aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/ws_auto_back_and_forth.c
diff options
context:
space:
mode:
authorLibravatar db <github@benedik.si>2018-04-08 16:44:59 +0200
committerLibravatar db <github@benedik.si>2018-04-08 16:44:59 +0200
commit042b80b9faef72c36451eecb5c803223fda3264a (patch)
tree59b751adc628878f1511a13abe9fd2230c5a6974 /sway/commands/ws_auto_back_and_forth.c
parentFixup for #1773 (diff)
downloadsway-042b80b9faef72c36451eecb5c803223fda3264a.tar.gz
sway-042b80b9faef72c36451eecb5c803223fda3264a.tar.zst
sway-042b80b9faef72c36451eecb5c803223fda3264a.zip
Add workspace_auto_back_and_forth command
This is the only missing piece - other code regarding this functionality has already been ported from pre-wlroots source.
Diffstat (limited to 'sway/commands/ws_auto_back_and_forth.c')
-rw-r--r--sway/commands/ws_auto_back_and_forth.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sway/commands/ws_auto_back_and_forth.c b/sway/commands/ws_auto_back_and_forth.c
new file mode 100644
index 00000000..2485db35
--- /dev/null
+++ b/sway/commands/ws_auto_back_and_forth.c
@@ -0,0 +1,12 @@
1#include <string.h>
2#include <strings.h>
3#include "sway/commands.h"
4
5struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) {
6 struct cmd_results *error = NULL;
7 if ((error = checkarg(argc, "workspace_auto_back_and_forth", EXPECTED_EQUAL_TO, 1))) {
8 return error;
9 }
10 config->auto_back_and_forth = !strcasecmp(argv[0], "yes");
11 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
12}