diff options
author | Luminarys <kizunanohikari@gmail.com> | 2015-08-10 13:53:43 -0500 |
---|---|---|
committer | Luminarys <kizunanohikari@gmail.com> | 2015-08-10 13:53:43 -0500 |
commit | c0ee2a64065f3a9953e977e517a466361444c144 (patch) | |
tree | 505618d3711dcd48c5e7941abd7dfe1ae070752f /sway/config.h | |
parent | 9c3a04b996649c0c578410e02181d8808b13c646 (diff) |
Added in reload and exec_always handling
Diffstat (limited to 'sway/config.h')
-rw-r--r-- | sway/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/config.h b/sway/config.h index 6802a341..6a50c445 100644 --- a/sway/config.h +++ b/sway/config.h @@ -29,9 +29,11 @@ struct sway_config { // Flags bool focus_follows_mouse; bool mouse_warping; + + bool reloading; }; -struct sway_config *read_config(FILE *file); +struct sway_config *read_config(FILE *file, bool is_active); char *do_var_replacement(struct sway_config *config, char *str); extern struct sway_config *config; |