2018-04-01 01:11:15 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
2018-07-24 05:04:46 +10:00
|
|
|
#include "util.h"
|
2018-04-01 01:11:15 +11: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;
|
|
|
|
}
|
2018-07-24 05:04:46 +10:00
|
|
|
config->focus_follows_mouse =
|
|
|
|
parse_boolean(argv[0], config->focus_follows_mouse);
|
2018-04-01 01:11:15 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|