aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2016-06-01 13:37:50 +0200
committerFurkan Sahin <furkan-dev@proton.me>2016-06-01 13:37:50 +0200
commitc8d980a4aaf176b1cab426a7a3a39134ba6327a3 (patch)
tree25364b13d60ef443fc09f66d3886c477c46868b6 /include/config.h
parentede4fba7972be327d7fc570b41b2d959a6d14049 (diff)
Included option floating_minimum_size
Values cannot be negative or 0; if so uses the default 75x50. Uses the same syntax as i3: floating_minimum_size <width> x <height>, although the x can be anything.
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 1a6ba19d..9e59cb66 100644
--- a/include/config.h
+++ b/include/config.h
@@ -227,11 +227,12 @@ struct sway_config {
uint32_t background;
} border_colors;
- // floating view minimum
+ // floating view
int32_t floating_maximum_width;
int32_t floating_maximum_height;
int32_t floating_minimum_width;
int32_t floating_minimum_height;
+ char *floating_minimum_size;
};
/**