sway

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

commit c75098e96fabad5539e0114346dba7e24cee6ffe
parent cafb1ff4f78b0f093ab4da987174b92762696366
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 20 Oct 2018 15:17:51 +0200

Merge pull request #2887 from RyanDwyer/bar-overlay

Put swaybar in overlay layer when using mode hide
Diffstat:
Mswaybar/bar.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swaybar/bar.c b/swaybar/bar.c @@ -102,7 +102,7 @@ static void add_layer_surface(struct swaybar_output *output) { bool hidden = strcmp(config->mode, "hide") == 0; output->layer_surface = zwlr_layer_shell_v1_get_layer_surface( bar->layer_shell, output->surface, output->output, - hidden ? ZWLR_LAYER_SHELL_V1_LAYER_TOP : + hidden ? ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY : ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM, "panel"); assert(output->layer_surface); zwlr_layer_surface_v1_add_listener(output->layer_surface,