mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Implement focus_wrapping
This commit is contained in:
parent
b2c0ba5b18
commit
46da1dc32b
8 changed files with 59 additions and 10 deletions
23
sway/commands/focus_wrapping.c
Normal file
23
sway/commands/focus_wrapping.c
Normal file
|
|
@ -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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue