aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/floating_modifier.c
blob: 9432c9f1e931e5d50302f257ee2e7477e779e987 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "sway/commands.h"
#include "sway/config.h"
#include "util.h"

struct cmd_results *cmd_floating_modifier(int argc, char **argv) {
	struct cmd_results *error = NULL;
	if ((error = checkarg(argc, "floating_modifier", EXPECTED_EQUAL_TO, 1))) {
		return error;
	}

	uint32_t mod = get_modifier_mask_by_name(argv[0]);
	if (!mod) {
		return cmd_results_new(CMD_INVALID, "floating_modifier",
				"Invalid modifier");
	}

	config->floating_mod = mod;

	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}