aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 473f723b..59f22ae2 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -181,6 +181,12 @@ struct seat_attachment_config {
181 // TODO other things are configured here for some reason 181 // TODO other things are configured here for some reason
182}; 182};
183 183
184enum seat_config_hide_cursor_when_typing {
185 HIDE_WHEN_TYPING_DEFAULT, // the default is currently disabled
186 HIDE_WHEN_TYPING_ENABLE,
187 HIDE_WHEN_TYPING_DISABLE,
188};
189
184enum seat_config_allow_constrain { 190enum seat_config_allow_constrain {
185 CONSTRAIN_DEFAULT, // the default is currently enabled 191 CONSTRAIN_DEFAULT, // the default is currently enabled
186 CONSTRAIN_ENABLE, 192 CONSTRAIN_ENABLE,
@@ -216,6 +222,7 @@ struct seat_config {
216 int fallback; // -1 means not set 222 int fallback; // -1 means not set
217 list_t *attachments; // list of seat_attachment configs 223 list_t *attachments; // list of seat_attachment configs
218 int hide_cursor_timeout; 224 int hide_cursor_timeout;
225 enum seat_config_hide_cursor_when_typing hide_cursor_when_typing;
219 enum seat_config_allow_constrain allow_constrain; 226 enum seat_config_allow_constrain allow_constrain;
220 enum seat_config_shortcuts_inhibit shortcuts_inhibit; 227 enum seat_config_shortcuts_inhibit shortcuts_inhibit;
221 enum seat_keyboard_grouping keyboard_grouping; 228 enum seat_keyboard_grouping keyboard_grouping;