mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Support i3's legacy force_focus_wrapping command
This commit is contained in:
parent
1071785f56
commit
c81d0ef1e8
5 changed files with 31 additions and 0 deletions
22
sway/commands/force_focus_wrapping.c
Normal file
22
sway/commands/force_focus_wrapping.c
Normal file
|
|
@ -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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue