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.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 549d2677..bc02c0fd 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -331,6 +331,12 @@ enum focus_wrapping_mode {
331 WRAP_FORCE 331 WRAP_FORCE
332}; 332};
333 333
334enum mouse_warping_mode {
335 WARP_NO,
336 WARP_OUTPUT,
337 WARP_CONTAINER
338};
339
334/** 340/**
335 * The configuration struct. The result of loading a config file. 341 * The configuration struct. The result of loading a config file.
336 */ 342 */
@@ -372,7 +378,7 @@ struct sway_config {
372 // Flags 378 // Flags
373 bool focus_follows_mouse; 379 bool focus_follows_mouse;
374 bool raise_floating; 380 bool raise_floating;
375 bool mouse_warping; 381 enum mouse_warping_mode mouse_warping;
376 enum focus_wrapping_mode focus_wrapping; 382 enum focus_wrapping_mode focus_wrapping;
377 bool active; 383 bool active;
378 bool failed; 384 bool failed;