summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h1
-rw-r--r--include/sway/config.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 5008831d..4ee7af2a 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -198,6 +198,7 @@ sway_cmd input_cmd_xkb_options;
198sway_cmd input_cmd_xkb_rules; 198sway_cmd input_cmd_xkb_rules;
199sway_cmd input_cmd_xkb_variant; 199sway_cmd input_cmd_xkb_variant;
200 200
201sway_cmd seat_cmd_fallback;
201sway_cmd seat_cmd_attach; 202sway_cmd seat_cmd_attach;
202 203
203sway_cmd cmd_ipc_cmd; 204sway_cmd cmd_ipc_cmd;
diff --git a/include/sway/config.h b/include/sway/config.h
index eb642dc2..fdfbbedb 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -90,6 +90,7 @@ struct seat_attachment_config {
90 */ 90 */
91struct seat_config { 91struct seat_config {
92 char *name; 92 char *name;
93 int fallback; // -1 means not set
93 list_t *attachments; // list of seat_attachment configs 94 list_t *attachments; // list of seat_attachment configs
94}; 95};
95 96