From 1e426cfee1668d12dd9ebb8f90bf536e3a35135b Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sat, 14 Feb 2026 18:27:36 -0500 Subject: [PATCH] fix(waybar): reduce top bar border widht --- home/modules/ui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/ui.nix b/home/modules/ui.nix index 99b8b9b..bf3efbe 100644 --- a/home/modules/ui.nix +++ b/home/modules/ui.nix @@ -11,7 +11,7 @@ let mkWaybarTheme = palette: '' * { color: ${palette.fg}; } - window#waybar { background: ${palette.bg}; border-bottom: 2px solid ${palette.bgAlt}; } + window#waybar { background: ${palette.bg}; border-bottom: 1px solid ${palette.bgAlt}; } #workspaces button { background: transparent; } #workspaces button.active { box-shadow: inset 0 2px ${palette.accent}; } #workspaces button:hover { background: ${palette.bgAlt}; }