aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-05-28 17:01:34 +0100
committerGitHub <noreply@github.com>2018-05-28 17:01:34 +0100
commit96d575b2525770ec542ea691fc654a3ab1ab2420 (patch)
treed26eaaeb6eff22539746a29fefb1e934943b578a /sway/commands
parent1071785f56676218a059e4d6fa10def630e5129b (diff)
parentc81d0ef1e8922ad34d431e5dae430b90b0b21d7b (diff)
downloadsway-96d575b2525770ec542ea691fc654a3ab1ab2420.tar.xz
Merge pull request #2066 from RedSoxFan/force-focus-wrapping
Support i3's legacy force_focus_wrapping command
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/force_focus_wrapping.c22
1 files changed, 22 insertions, 0 deletions
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 <strings.h>
+#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);
+}