summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-08-18 03:48:41 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-08-18 03:48:41 -0700
commitb132f67e7bb5017c73658cec8d297060033890e8 (patch)
tree3884645d160d5f3572e3fe821da23fd8088a9d09 /include
parentmore changes (diff)
downloadsway-b132f67e7bb5017c73658cec8d297060033890e8.tar.gz
sway-b132f67e7bb5017c73658cec8d297060033890e8.tar.zst
sway-b132f67e7bb5017c73658cec8d297060033890e8.zip
minor fixes
Diffstat (limited to 'include')
-rw-r--r--include/config.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/config.h b/include/config.h
index b9511aac..9243bf35 100644
--- a/include/config.h
+++ b/include/config.h
@@ -33,17 +33,17 @@ struct sway_config {
33 list_t *cmd_queue; 33 list_t *cmd_queue;
34 list_t *workspace_outputs; 34 list_t *workspace_outputs;
35 struct sway_mode *current_mode; 35 struct sway_mode *current_mode;
36 uint32_t floating_mod; 36 uint32_t floating_mod;
37 37
38 // Flags 38 // Flags
39 bool focus_follows_mouse; 39 bool focus_follows_mouse;
40 bool mouse_warping; 40 bool mouse_warping;
41 bool active; 41 bool active;
42 bool failed; 42 bool failed;
43 bool reloading; 43 bool reloading;
44}; 44};
45 45
46bool load_config(); 46bool load_config(void);
47bool read_config(FILE *file, bool is_active); 47bool read_config(FILE *file, bool is_active);
48char *do_var_replacement(struct sway_config *config, char *str); 48char *do_var_replacement(struct sway_config *config, char *str);
49 49