mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Add workspace_auto_back_and_forth command
This is the only missing piece - other code regarding this functionality has already been ported from pre-wlroots source.
This commit is contained in:
parent
4ba6545c65
commit
042b80b9fa
3 changed files with 14 additions and 0 deletions
12
sway/commands/ws_auto_back_and_forth.c
Normal file
12
sway/commands/ws_auto_back_and_forth.c
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include "sway/commands.h"
|
||||
|
||||
struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) {
|
||||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "workspace_auto_back_and_forth", EXPECTED_EQUAL_TO, 1))) {
|
||||
return error;
|
||||
}
|
||||
config->auto_back_and_forth = !strcasecmp(argv[0], "yes");
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue