From c81d0ef1e8922ad34d431e5dae430b90b0b21d7b Mon Sep 17 00:00:00 2001 From: Brian Ashworth Date: Mon, 28 May 2018 11:09:46 -0400 Subject: Support i3's legacy force_focus_wrapping command --- sway/commands/force_focus_wrapping.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sway/commands/force_focus_wrapping.c (limited to 'sway/commands') diff --git a/sway/commands/force_focus_wrapping.c b/sway/commands/force_focus_wrapping.c new file mode 100644 index 00000000..bc1d067f --- /dev/null +++ b/sway/commands/force_focus_wrapping.c @@ -0,0 +1,22 @@ +#include +#include "sway/commands.h" +#include "sway/config.h" + +struct cmd_results *cmd_force_focus_wrapping(int argc, char **argv) { + struct cmd_results *error = + checkarg(argc, "force_focus_wrapping", EXPECTED_EQUAL_TO, 1); + if (error) { + return error; + } + + if (strcasecmp(argv[0], "no") == 0) { + config->focus_wrapping = WRAP_YES; + } else if (strcasecmp(argv[0], "yes") == 0) { + config->focus_wrapping = WRAP_FORCE; + } else { + return cmd_results_new(CMD_INVALID, "force_focus_wrapping", + "Expected 'force_focus_wrapping yes|no'"); + } + + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} -- cgit v1.2.3