aboutsummaryrefslogtreecommitdiff
path: root/sway/config.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-13 15:52:16 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-13 15:52:16 -0400
commit3a3c50135fabc6a23f7b130effef9b642e54bf3c (patch)
treed22fbf61f38f7c8987df51cf5f23b60e5f95e3b3 /sway/config.h
parent0dc1d87490eaadbe245af7406b0e5ca4d53f17a0 (diff)
parentffe59b27a956e4430a97d65874ef15c5e9129ee0 (diff)
Merge pull request #26 from Luminarys/master
Added in proper workspace name generation and command queue
Diffstat (limited to 'sway/config.h')
-rw-r--r--sway/config.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/config.h b/sway/config.h
index 62b65723..c9fd374c 100644
--- a/sway/config.h
+++ b/sway/config.h
@@ -24,17 +24,19 @@ struct sway_mode {
struct sway_config {
list_t *symbols;
list_t *modes;
+ list_t *cmd_queue;
struct sway_mode *current_mode;
// Flags
bool focus_follows_mouse;
bool mouse_warping;
-
+ bool active;
+ bool failed;
bool reloading;
};
bool load_config();
-struct sway_config *read_config(FILE *file, bool is_active);
+bool read_config(FILE *file, bool is_active);
char *do_var_replacement(struct sway_config *config, char *str);
extern struct sway_config *config;