aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar KoffeinFlummi <koffeinflummi@gmail.com>2015-08-18 23:53:57 +0200
committerLibravatar KoffeinFlummi <koffeinflummi@gmail.com>2015-08-18 23:53:57 +0200
commit4c688cba4e3528921656d63a09f7015cae13cd0c (patch)
treee6f0a07953c900973a48abf467979c0e325c7389 /include
parentCoding style enforcement (diff)
downloadsway-4c688cba4e3528921656d63a09f7015cae13cd0c.tar.gz
sway-4c688cba4e3528921656d63a09f7015cae13cd0c.tar.zst
sway-4c688cba4e3528921656d63a09f7015cae13cd0c.zip
Add support for gaps option
Diffstat (limited to 'include')
-rw-r--r--include/config.h3
-rw-r--r--include/container.h2
2 files changed, 5 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 9243bf35..c47eb683 100644
--- a/include/config.h
+++ b/include/config.h
@@ -41,6 +41,9 @@ struct sway_config {
41 bool active; 41 bool active;
42 bool failed; 42 bool failed;
43 bool reloading; 43 bool reloading;
44
45 int gaps_inner;
46 int gaps_outer;
44}; 47};
45 48
46bool load_config(void); 49bool load_config(void);
diff --git a/include/container.h b/include/container.h
index 186ee8b6..6d64b490 100644
--- a/include/container.h
+++ b/include/container.h
@@ -48,6 +48,8 @@ struct sway_container {
48 48
49 char *name; 49 char *name;
50 50
51 int gaps;
52
51 list_t *children; 53 list_t *children;
52 list_t *floating; 54 list_t *floating;
53 55