diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-08 10:57:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-08 10:57:02 -0400 |
commit | e10dc77fc60be548d9c2b8782ce83db8df1f95f3 (patch) | |
tree | 59b751adc628878f1511a13abe9fd2230c5a6974 /sway/commands | |
parent | 4ba6545c650712b1ec18854fa7f94995d0176637 (diff) | |
parent | 042b80b9faef72c36451eecb5c803223fda3264a (diff) |
Merge pull request #1775 from thejan2009/workspace_auto_back_and_forth
Add workspace_auto_back_and_forth command
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/ws_auto_back_and_forth.c | 12 |
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 @@ +#include <string.h> +#include <strings.h> +#include "sway/commands.h" + +struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) { + struct cmd_results *error = NULL; + if ((error = checkarg(argc, "workspace_auto_back_and_forth", EXPECTED_EQUAL_TO, 1))) { + return error; + } + config->auto_back_and_forth = !strcasecmp(argv[0], "yes"); + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} |