Add support for gaps option

This commit is contained in:
KoffeinFlummi 2015-08-18 23:53:57 +02:00
parent 2139001c9f
commit 4c688cba4e
6 changed files with 63 additions and 10 deletions

View file

@ -41,6 +41,9 @@ struct sway_config {
bool active;
bool failed;
bool reloading;
int gaps_inner;
int gaps_outer;
};
bool load_config(void);

View file

@ -48,6 +48,8 @@ struct sway_container {
char *name;
int gaps;
list_t *children;
list_t *floating;