aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/tiling_drag.c
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-09-11 17:17:19 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-09-11 17:17:19 +1000
commitec9c4de564286d3795dd204e2c0a69b10f7572be (patch)
tree16bec8855579b6f537eb6cadb2344125b414254a /sway/commands/tiling_drag.c
parentd4e80cf301d77f69370cc81657c433990986cfa6 (diff)
Introduce tiling_drag directive
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 @@
+#include "sway/commands.h"
+#include "util.h"
+
+struct cmd_results *cmd_tiling_drag(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "tiling_drag", EXPECTED_EQUAL_TO, 1))) {
+ return error;
+ }
+
+ config->tiling_drag = parse_boolean(argv[0], config->tiling_drag);
+
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}