diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-27 22:55:07 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-27 22:55:07 -0400 |
commit | 930d136196f12fc13380c68058c52d86107561cd (patch) | |
tree | 7aac4f1730b810fbe620ba5e70e15a51c46d24d5 /include | |
parent | 0a74364656ff7e36d276373a3e159e86784363d7 (diff) | |
parent | acb3fbdfb559e461aaac6d357146f43c4e9c3d38 (diff) |
Merge pull request #144 from Luminarys/master
Added in default_orientation handling
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 6d36eb41..d1a6d0ac 100644 --- a/include/config.h +++ b/include/config.h @@ -5,6 +5,7 @@ #include <wlc/wlc.h> #include <xkbcommon/xkbcommon.h> #include "list.h" +#include "layout.h" struct sway_variable { char *name; @@ -42,6 +43,8 @@ struct sway_config { list_t *output_configs; struct sway_mode *current_mode; uint32_t floating_mod; + enum swayc_layouts default_orientation; + enum swayc_layouts default_layout; // Flags bool focus_follows_mouse; |