summaryrefslogtreecommitdiffstats
path: root/sway/commands/tiling_drag.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/tiling_drag.c')
-rw-r--r--sway/commands/tiling_drag.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/commands/tiling_drag.c b/sway/commands/tiling_drag.c
new file mode 100644
index 00000000..92fbde7c
--- /dev/null
+++ b/sway/commands/tiling_drag.c
@@ -0,0 +1,13 @@
1#include "sway/commands.h"
2#include "util.h"
3
4struct cmd_results *cmd_tiling_drag(int argc, char **argv) {
5 struct cmd_results *error = NULL;
6 if ((error = checkarg(argc, "tiling_drag", EXPECTED_EQUAL_TO, 1))) {
7 return error;
8 }
9
10 config->tiling_drag = parse_boolean(argv[0], config->tiling_drag);
11
12 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
13}