diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-18 07:02:31 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-18 07:02:31 -0400 |
commit | 2f6dd0687bac748f414e5deb090f38d755f66d29 (patch) | |
tree | 098ea31107357e0ebedd5435d870f11fe4b60836 /include/config.h | |
parent | debb0d6bc198e13ef019b141029cdc62a7087532 (diff) | |
parent | b132f67e7bb5017c73658cec8d297060033890e8 (diff) |
Merge pull request #65 from taiyu-len/focus_v2
Focus v2
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/config.h b/include/config.h index 38e93eb8..9243bf35 100644 --- a/include/config.h +++ b/include/config.h @@ -3,6 +3,7 @@ #include <stdint.h> #include <wlc/wlc.h> +#include <xkbcommon/xkbcommon.h> #include "list.h" struct sway_variable { @@ -32,16 +33,17 @@ struct sway_config { list_t *cmd_queue; list_t *workspace_outputs; struct sway_mode *current_mode; + uint32_t floating_mod; // Flags bool focus_follows_mouse; bool mouse_warping; - bool active; - bool failed; + bool active; + bool failed; bool reloading; }; -bool load_config(); +bool load_config(void); bool read_config(FILE *file, bool is_active); char *do_var_replacement(struct sway_config *config, char *str); |