summaryrefslogtreecommitdiffstats
path: root/sway/commands/force_focus_wrapping.c
blob: bc1d067fa62cef62c88fa0eee9bde2f3d921c57e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}