diff options
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index 118981e3..de651ea4 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -285,6 +285,12 @@ struct ipc_policy { uint32_t features; }; +enum focus_wrapping_mode { + WRAP_NO, + WRAP_YES, + WRAP_FORCE +}; + /** * The configuration struct. The result of loading a config file. */ @@ -320,7 +326,7 @@ struct sway_config { // Flags bool focus_follows_mouse; bool mouse_warping; - bool force_focus_wrapping; + enum focus_wrapping_mode focus_wrapping; bool active; bool failed; bool reloading; |