From da857e292b06539eacb6ae893dcef231bb96b0d6 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 14 Feb 2026 18:24:33 -0500 Subject: [PATCH] fix(waybar): make it not exclusive --- home/modules/ui.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/modules/ui.nix b/home/modules/ui.nix index 3b5213f..8274260 100644 --- a/home/modules/ui.nix +++ b/home/modules/ui.nix @@ -11,9 +11,9 @@ let mkWaybarTheme = palette: '' * { color: ${palette.fg}; } - window#waybar { background: ${palette.bg}; border-top: 4px solid ${palette.bgAlt}; } + window#waybar { background: ${palette.bg}; border-bottom: 4px solid ${palette.bgAlt}; } #workspaces button { background: transparent; } - #workspaces button.active { box-shadow: inset 0 -2px ${palette.accent}; } + #workspaces button.active { box-shadow: inset 0 2px ${palette.accent}; } #workspaces button:hover { background: ${palette.bgAlt}; } #window { color: ${palette.fgAlt}; } tooltip { background: ${palette.bgAlt}; color: ${palette.fg}; border: 1px solid ${palette.border}; } @@ -72,8 +72,8 @@ in settings.mainBar = { reload_style_on_change = true; layer = "top"; - position = "bottom"; - exclusive = true; + position = "top"; + exclusive = false; height = 38; modules-left = [ "hyprland/workspaces" ];