sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 531c175d3e60bf9dbfd538af1fd5eebb906c6f91
parent 1e8faeec0263a7da311a13c56a0de34e47e66fa6
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 29 Mar 2018 12:03:08 -0400

Respect user bar height preference

This is an i3-gaps feature we support

Diffstat:
Mswaybar/render.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/swaybar/render.c b/swaybar/render.c @@ -158,6 +158,9 @@ void render_frame(struct swaybar *bar, CAIRO_CONTENT_COLOR_ALPHA, NULL); cairo_t *cairo = cairo_create(recorder); uint32_t height = render_to_cairo(cairo, bar, output); + if (bar->config->height >= 0 && height < (uint32_t)bar->config->height) { + height = bar->config->height; + } if (height != output->height) { // Reconfigure surface zwlr_layer_surface_v1_set_size(