mirror of
https://github.com/swaywm/sway.git
synced 2024-11-12 19:23:18 +00:00
042b80b9fa
This is the only missing piece - other code regarding this functionality has already been ported from pre-wlroots source.
13 lines
395 B
C
13 lines
395 B
C
#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);
|
|
}
|