From c0bbb2c656ee6659259f3a4aff6923f986c8d1a1 Mon Sep 17 00:00:00 2001 From: benstrb Date: Sat, 31 Jan 2026 14:13:16 +0100 Subject: [PATCH] non important commit --- home/modules/waybar.nix | 107 +++++++++++++++++++++------------------- 1 file changed, 57 insertions(+), 50 deletions(-) diff --git a/home/modules/waybar.nix b/home/modules/waybar.nix index 829c400..bcb5ed0 100644 --- a/home/modules/waybar.nix +++ b/home/modules/waybar.nix @@ -34,61 +34,68 @@ }; style = '' - /* Colors */ - @define-color fg #fafafa; - @define-color fg-alt #bdbdbd; - @define-color purple #d500f9; - @define-color red #ff1744; - @define-color trans transparent; + /* Colors */ + @define-color fg #fafafa; + @define-color fg-alt #bdbdbd; + @define-color purple #d500f9; + @define-color red #ff1744; + @define-color trans transparent; - /* Global Settings */ - * { - font-family: 'monospace'; - font-size: 10px; - min-height: 0px; - } + /* Global Settings */ + * { + font-family: 'monospace'; + font-size: 10px; + min-height: 0px; + } - /* Waybar */ - window#waybar { - background-color: @trans; - color: @fg; - } + /* Waybar */ + window#waybar { + background-color: @trans; + color: @fg; + } - /* Workspaces */ - #workspaces { - background-color: @trans; - color: @fg; - } + /* Workspaces */ + #workspaces { + background-color: @trans; + color: @fg; + } - #workspaces button:hover { - background-color: @trans; - } - - #workspaces button { - padding: 0 2px; - background-color: @trans; - color: @fg-alt; - border: none; - } - - #workspaces button.active { - color: @purple; - } - - #workspaces button.urgent { - color: @red; - } - - /* Clock */ - #clock { - background-color: transparent; - color: @fg; - padding: 0 8px; - } - - #clock:hover { + #workspaces button:hover { background-color: @trans; - } + color: @fg-alt; + box-shadow: none; + text-shadow: none; + border: none; + } + + #workspaces button { + padding: 0 2px; + background-color: @trans; + color: @fg-alt; + border: none; + } + + #workspaces button.active { + color: @purple; + } + + #workspaces button.urgent { + color: @red; + } + + /* Clock */ + #clock { + background-color: transparent; + color: @fg; + padding: 0 8px; + } + + #clock:hover { + background-color: @trans; + color: @fg; + box-shadow: none; + text-shadow: none; + } ''; }; }