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-11-07 07:58:08 +11:00
|
|
|
} else if(strcmp(argv[0], "no") == 0) {
|
|
|
|
config->focus_follows_mouse = FOLLOWS_NO;
|
|
|
|
} else if(strcmp(argv[0], "yes") == 0) {
|
|
|
|
config->focus_follows_mouse = FOLLOWS_YES;
|
|
|
|
} else if(strcmp(argv[0], "always") == 0) {
|
|
|
|
config->focus_follows_mouse = FOLLOWS_ALWAYS;
|
|
|
|
} else {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "focus_follows_mouse",
|
|
|
|
"Expected 'focus_follows_mouse no|yes|always'");
|
2018-04-01 01:11:15 +11:00
|
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|