2018-05-28 13:20:21 +10:00
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/config.h"
|
2018-07-24 05:04:46 +10:00
|
|
|
#include "util.h"
|
2018-05-28 13:20:21 +10:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-07-24 11:37:53 +10:00
|
|
|
if (strcasecmp(argv[0], "force") == 0) {
|
2018-05-28 13:20:21 +10:00
|
|
|
config->focus_wrapping = WRAP_FORCE;
|
2019-10-17 05:27:19 +11:00
|
|
|
} else if (strcasecmp(argv[0], "workspace") == 0) {
|
|
|
|
config->focus_wrapping = WRAP_WORKSPACE;
|
2018-07-24 05:04:46 +10:00
|
|
|
} else if (parse_boolean(argv[0], config->focus_wrapping == WRAP_YES)) {
|
|
|
|
config->focus_wrapping = WRAP_YES;
|
2018-05-28 13:20:21 +10:00
|
|
|
} else {
|
2018-07-24 05:04:46 +10:00
|
|
|
config->focus_wrapping = WRAP_NO;
|
2018-05-28 13:20:21 +10:00
|
|
|
}
|
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-05-28 13:20:21 +10:00
|
|
|
}
|