2018-09-02 15:03:58 +10:00
|
|
|
#include "sway/commands.h"
|
|
|
|
|
|
|
|
struct cmd_results *cmd_focus_on_window_activation(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "focus_on_window_activation",
|
|
|
|
EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[0], "smart") == 0) {
|
|
|
|
config->focus_on_window_activation = FOWA_SMART;
|
|
|
|
} else if (strcmp(argv[0], "urgent") == 0) {
|
|
|
|
config->focus_on_window_activation = FOWA_URGENT;
|
|
|
|
} else if (strcmp(argv[0], "focus") == 0) {
|
|
|
|
config->focus_on_window_activation = FOWA_FOCUS;
|
|
|
|
} else if (strcmp(argv[0], "none") == 0) {
|
|
|
|
config->focus_on_window_activation = FOWA_NONE;
|
|
|
|
} else {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_INVALID,
|
2018-09-02 15:03:58 +10:00
|
|
|
"Expected "
|
|
|
|
"'focus_on_window_activation smart|urgent|focus|none'");
|
|
|
|
}
|
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-09-02 15:03:58 +10:00
|
|
|
}
|