summaryrefslogtreecommitdiffstats
path: root/sway/commands/input/drag_lock.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/drag_lock.c')
-rw-r--r--sway/commands/input/drag_lock.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/sway/commands/input/drag_lock.c b/sway/commands/input/drag_lock.c
new file mode 100644
index 00000000..7bb2e334
--- /dev/null
+++ b/sway/commands/input/drag_lock.c
@@ -0,0 +1,25 @@
1#include <string.h>
2#include "commands.h"
3#include "input.h"
4
5struct cmd_results *input_cmd_drag_lock(int argc, char **argv) {
6 struct cmd_results *error = NULL;
7 if ((error = checkarg(argc, "drag_lock", EXPECTED_AT_LEAST, 1))) {
8 return error;
9 }
10 if (!current_input_config) {
11 return cmd_results_new(CMD_FAILURE, "drag_lock", "No input device defined.");
12 }
13 struct input_config *new_config = new_input_config(current_input_config->identifier);
14
15 if (strcasecmp(argv[0], "enabled") == 0) {
16 new_config->drag_lock = LIBINPUT_CONFIG_DRAG_LOCK_ENABLED;
17 } else if (strcasecmp(argv[0], "disabled") == 0) {
18 new_config->drag_lock = LIBINPUT_CONFIG_DRAG_LOCK_DISABLED;
19 } else {
20 return cmd_results_new(CMD_INVALID, "drag_lock", "Expected 'drag_lock <enabled|disabled>'");
21 }
22
23 input_cmd_apply(new_config);
24 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
25}