diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-10-20 16:48:43 +1000 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-10-20 16:48:43 +1000 |
| commit | fd65201085c87d07543df71e0c7688e58d2959d2 (patch) | |
| tree | 162d23fe218cf4e54b3e07937265477e3cef4873 /swaybar/bar.c | |
| parent | 104623c0f6b2ad6aba033d18a27df99222269702 (diff) | |
Put swaybar in overlay layer when using mode hide
This allows the bar to render over fullscreen views.
Diffstat (limited to 'swaybar/bar.c')
| -rw-r--r-- | swaybar/bar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 5e9767b2..fa761925 100644 --- 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, |
