aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-03-26 11:51:59 -0400
committerDrew DeVault <sir@cmpwn.com>2016-03-26 11:51:59 -0400
commit3b849ce5a6387f2b95936ea225f2047e79a5b0c3 (patch)
treec5b8b0f46b01a681c473a82fff0d0a1412aee094 /include
parent3da269b78a3798f69b34b2515c7d9212e0e6827f (diff)
parent44ea92ea607e81ee6e611c6de700845effc43524 (diff)
downloadsway-3b849ce5a6387f2b95936ea225f2047e79a5b0c3.tar.xz
Merge pull request #544 from mikkeloscar/add-include-command
Add include command
Diffstat (limited to 'include')
-rw-r--r--include/config.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/include/config.h b/include/config.h
index 9356140d..4bcf55e8 100644
--- a/include/config.h
+++ b/include/config.h
@@ -184,15 +184,27 @@ struct sway_config {
bool smart_gaps;
int gaps_inner;
int gaps_outer;
+
+ list_t *config_chain;
+ const char *current_config;
};
/**
- * Loads the config from the given path.
+ * Loads the main config from the given path. is_active should be true when
+ * reloading the config.
*/
-bool load_config(const char *file);
-/** Reads the config from the given FILE.
+bool load_main_config(const char *path, bool is_active);
+
+/**
+ * Loads an included config. Can only be used after load_main_config.
*/
-bool read_config(FILE *file, bool is_active);
+bool load_include_configs(const char *path, struct sway_config *config);
+
+/**
+ * Reads the config from the given FILE.
+ */
+bool read_config(FILE *file, struct sway_config *config);
+
/**
* Free config struct
*/