mirror of
https://github.com/swaywm/sway.git
synced 2025-11-22 06:59:48 -05:00
seat config handler context
This commit is contained in:
parent
9e0595f26b
commit
cc3c713889
8 changed files with 31 additions and 8 deletions
|
|
@ -12,6 +12,8 @@ struct cmd_results *seat_cmd_attach(int argc, char **argv) {
|
|||
if ((error = checkarg(argc, "attach", EXPECTED_AT_LEAST, 1))) {
|
||||
return error;
|
||||
}
|
||||
struct seat_config *current_seat_config =
|
||||
config->handler_context.seat_config;
|
||||
if (!current_seat_config) {
|
||||
return cmd_results_new(CMD_FAILURE, "attach", "No seat defined");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@ struct cmd_results *seat_cmd_fallback(int argc, char **argv) {
|
|||
if ((error = checkarg(argc, "fallback", EXPECTED_AT_LEAST, 1))) {
|
||||
return error;
|
||||
}
|
||||
struct seat_config *current_seat_config =
|
||||
config->handler_context.seat_config;
|
||||
if (!current_seat_config) {
|
||||
return cmd_results_new(CMD_FAILURE, "fallback", "No seat defined");
|
||||
}
|
||||
|
|
@ -20,6 +22,7 @@ struct cmd_results *seat_cmd_fallback(int argc, char **argv) {
|
|||
} else if (strcasecmp(argv[0], "false") == 0) {
|
||||
new_config->fallback = 0;
|
||||
} else {
|
||||
free_seat_config(new_config);
|
||||
return cmd_results_new(CMD_INVALID, "fallback",
|
||||
"Expected 'fallback <true|false>'");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue