swayfx/sway/commands/focus_follows_mouse.c

14 lines
383 B
C
Raw Normal View History

2016-09-02 12:39:08 +10:00
#include <string.h>
2017-03-11 15:41:24 +11:00
#include <strings.h>
2016-09-03 05:11:48 +10:00
#include "sway/commands.h"
2016-09-02 12:39:08 +10:00
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);
}