sway-patched-tray-menu-github/sway/commands/focus_follows_mouse.c

13 lines
362 B
C
Raw Normal View History

2016-09-02 04:39:08 +02:00
#include <string.h>
2016-09-02 21:11:48 +02:00
#include "sway/commands.h"
2016-09-02 04:39:08 +02: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);
}