mirror of
https://github.com/swaywm/sway.git
synced 2025-11-18 06:59:48 -05:00
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.
This commit is contained in:
parent
4d6be1b640
commit
0ad7857f90
3 changed files with 40 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue