aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/seat.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-17 10:39:22 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-17 10:39:22 -0500
commit88bcd43ebf59cfa03a9e9a158c6f7a258c1f7db2 (patch)
tree4c2b9321ab9d5f7a9aeed35c7d6826c5da4e496f /sway/commands/seat.c
parentsend keyboard enter on keyboard configuration (diff)
downloadsway-88bcd43ebf59cfa03a9e9a158c6f7a258c1f7db2.tar.gz
sway-88bcd43ebf59cfa03a9e9a158c6f7a258c1f7db2.tar.zst
sway-88bcd43ebf59cfa03a9e9a158c6f7a258c1f7db2.zip
seat fallback config
Diffstat (limited to 'sway/commands/seat.c')
-rw-r--r--sway/commands/seat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands/seat.c b/sway/commands/seat.c
index 4f9e259b..0149762a 100644
--- a/sway/commands/seat.c
+++ b/sway/commands/seat.c
@@ -24,6 +24,8 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
24 current_seat_config = new_seat_config(argv[0]); 24 current_seat_config = new_seat_config(argv[0]);
25 if (strcasecmp("attach", argv[1]) == 0) { 25 if (strcasecmp("attach", argv[1]) == 0) {
26 res = seat_cmd_attach(argc_new, argv_new); 26 res = seat_cmd_attach(argc_new, argv_new);
27 } else if (strcasecmp("fallback", argv[1]) == 0) {
28 res = seat_cmd_fallback(argc_new, argv_new);
27 } else { 29 } else {
28 res = cmd_results_new(CMD_INVALID, "seat <name>", "Unknown command %s", argv[1]); 30 res = cmd_results_new(CMD_INVALID, "seat <name>", "Unknown command %s", argv[1]);
29 } 31 }