summaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h
index 9caadec8..b9ef340b 100644
--- a/include/config.h
+++ b/include/config.h
@@ -40,7 +40,7 @@ struct sway_mode {
40 */ 40 */
41struct output_config { 41struct output_config {
42 char *name; 42 char *name;
43 bool enabled; 43 int enabled;
44 int width, height; 44 int width, height;
45 int x, y; 45 int x, y;
46 char *background; 46 char *background;
@@ -99,6 +99,7 @@ bool read_config(FILE *file, bool is_active);
99 */ 99 */
100char *do_var_replacement(char *str); 100char *do_var_replacement(char *str);
101int output_name_cmp(const void *item, const void *data); 101int output_name_cmp(const void *item, const void *data);
102void merge_output_config(struct output_config *dst, struct output_config *src);
102/** Sets up a WLC output handle based on a given output_config. 103/** Sets up a WLC output handle based on a given output_config.
103 */ 104 */
104void apply_output_config(struct output_config *oc, swayc_t *output); 105void apply_output_config(struct output_config *oc, swayc_t *output);