aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/seat.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-12-27 00:46:55 -0500
committerLibravatar emersion <contact@emersion.fr>2018-12-29 19:40:40 +0100
commit3e8f548d1d0acb3aba384842615e6528b3027283 (patch)
tree8c0bd5fbcc42d9ad08a4630940598719f3d6a54e /sway/commands/seat.c
parentsway-output(5): doc scaling consideration for pos (diff)
downloadsway-3e8f548d1d0acb3aba384842615e6528b3027283.tar.gz
sway-3e8f548d1d0acb3aba384842615e6528b3027283.tar.zst
sway-3e8f548d1d0acb3aba384842615e6528b3027283.zip
Revamp seat configs
This makes seat configs work like output and input configs do. This also adds support for wildcard seat configs. A seat config is still created in the main seat command handler, but instead of creating a new one in the subcommands and destroying the main seat command's instance, the seat subcommands modify the main one. The seat config is then stored, where it is merged appropriately. The seat config returned from `store_seat_config` is then applied. When attempting to apply a wildcard seat config, a seat specific config is queried for and if found, that is used. Otherwise, the wildcard config is applied directly. Additionally, instead of adding input devices to the default seat directly when there is no seat configs, a seat config for the default seat is created with only fallback set to true, which is more explicit. It also fixes an issue where running a seat command at runtime (with no seat config in the sway config), would result in all input devices being removed from the default seat and leaving sway in an unusable state. Also, instead of checking for any seat config, the search is for a seat config with a fallback option seat. This makes it so if there are only seat configs with fallback set to -1, the default seat is still created since there is no explicit notion on what to do regarding fallbacks. However, if there is even a single fallback 0, then the default seat is not used as a fallback. This will be needed for seat subcommands like hide_cursor where the user may only want to set that property without effecting anything else.
Diffstat (limited to 'sway/commands/seat.c')
-rw-r--r--sway/commands/seat.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/sway/commands/seat.c b/sway/commands/seat.c
index 5abb19b0..56acd204 100644
--- a/sway/commands/seat.c
+++ b/sway/commands/seat.c
@@ -26,9 +26,16 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
26 26
27 struct cmd_results *res = config_subcommand(argv + 1, argc - 1, 27 struct cmd_results *res = config_subcommand(argv + 1, argc - 1,
28 seat_handlers, sizeof(seat_handlers)); 28 seat_handlers, sizeof(seat_handlers));
29 if (res && res->status != CMD_SUCCESS) {
30 free_seat_config(config->handler_context.seat_config);
31 config->handler_context.seat_config = NULL;
32 return res;
33 }
29 34
30 free_seat_config(config->handler_context.seat_config); 35 struct seat_config *sc =
31 config->handler_context.seat_config = NULL; 36 store_seat_config(config->handler_context.seat_config);
37 input_manager_apply_seat_config(sc);
32 38
33 return res; 39 config->handler_context.seat_config = NULL;
40 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
34} 41}