summaryrefslogtreecommitdiffstats
path: root/sway/commands/focus_follows_mouse.c
blob: 8ccefa597227dedacfd2389640c1fa3e7eaf8733 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>
#include "sway/commands.h"

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

	config->focus_follows_mouse = !strcasecmp(argv[0], "yes");
	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}