diff options
author | emersion <contact@emersion.fr> | 2018-05-28 10:30:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-28 10:30:11 +0100 |
commit | 1071785f56676218a059e4d6fa10def630e5129b (patch) | |
tree | f3ec325fc9e67af920c94454e2f6f2a5766d8b88 /sway/commands | |
parent | 015878e5db5df2fa36c3d5783661e56d5f10c100 (diff) | |
parent | 46da1dc32bd6c101964d32bb698e8187fb9ee91e (diff) |
Merge pull request #2060 from RedSoxFan/focus-wrapping
Implement focus_wrapping
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/focus_wrapping.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sway/commands/focus_wrapping.c b/sway/commands/focus_wrapping.c new file mode 100644 index 00000000..0a9e0bf2 --- /dev/null +++ b/sway/commands/focus_wrapping.c @@ -0,0 +1,23 @@ +#include <strings.h> +#include "sway/commands.h" +#include "sway/config.h" + +struct cmd_results *cmd_focus_wrapping(int argc, char **argv) { + struct cmd_results *error = NULL; + if ((error = checkarg(argc, "focus_wrapping", EXPECTED_EQUAL_TO, 1))) { + return error; + } + + if (strcasecmp(argv[0], "no") == 0) { + config->focus_wrapping = WRAP_NO; + } else if (strcasecmp(argv[0], "yes") == 0) { + config->focus_wrapping = WRAP_YES; + } else if (strcasecmp(argv[0], "force") == 0) { + config->focus_wrapping = WRAP_FORCE; + } else { + return cmd_results_new(CMD_INVALID, "focus_wrapping", + "Expected 'focus_wrapping yes|no|force'"); + } + + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} |