diff options
author | Drew DeVault <[email protected]> | 2015-08-09 09:23:10 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-09 09:23:10 -0400 |
commit | f97a48d5b75fd80a578af14f19d0b1d954f82fdd (patch) | |
tree | c99dcdd46754915d18445281d2778ea61be05f3b /sway/config.h | |
parent | 086691016e7cbe9794b73c174eaefa77e2d56498 (diff) |
Implement focus_follows_mouse
Diffstat (limited to 'sway/config.h')
-rw-r--r-- | sway/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/config.h b/sway/config.h index 88225800..6802a341 100644 --- a/sway/config.h +++ b/sway/config.h @@ -25,6 +25,10 @@ struct sway_config { list_t *symbols; list_t *modes; struct sway_mode *current_mode; + + // Flags + bool focus_follows_mouse; + bool mouse_warping; }; struct sway_config *read_config(FILE *file); |