From 0ad7857f909278fde8603b995d59b86437d5247f Mon Sep 17 00:00:00 2001 From: Denis Doria Date: Wed, 1 Jun 2016 13:37:50 +0200 Subject: 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 x , although the x can be anything. --- include/config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') 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; }; /** -- cgit v1.2.3-54-g00ecf