From 3f51bf1e53bfb68500a2500a20aab43c7f7efd94 Mon Sep 17 00:00:00 2001 From: benstrb Date: Sat, 31 Jan 2026 11:33:14 +0100 Subject: [PATCH] non important commit --- home/modules/waybar.nix | 68 +++++++++++------------------------------ 1 file changed, 18 insertions(+), 50 deletions(-) diff --git a/home/modules/waybar.nix b/home/modules/waybar.nix index 1bd0eab..d638ca0 100644 --- a/home/modules/waybar.nix +++ b/home/modules/waybar.nix @@ -29,83 +29,51 @@ }; style = '' - /* Rose Pine Color Definitions */ - @define-color base #191724; - @define-color subtle #908caa; - @define-color text #e0def4; - @define-color love #eb6f92; - @define-color gold #f6c177; + /* 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: 'JetBrainsMono Nerd Font'; - font-size: 12px; - font-weight: bold; + font-family: 'monospace'; + font-size: 10px; min-height: 0px; } /* Waybar */ window#waybar { - background-color: transparent; - transition-property: background-color; - transition-duration: .5s; + background-color: @trans; + color: @fg; } /* Workspaces */ #workspaces { background-color: transparent; - border-radius: 8px; - border: 1px solid alpha(@text, 0.15); } #workspaces button { - padding: 3px; - border-radius: 2px; + padding: 0 8px; background-color: transparent; - color: @text; - opacity: 1; + color: @fg-alt; + border: none; } #workspaces button.active { - color: @love; - opacity: 1; + color: @purple; } - #workspaces button.empty { - color: alpha(@text, 0.4); - opacity: 0.45; - transition: all 0.15s ease-in-out; - } - - #workspaces button.empty.active { - color: @love; + #workspaces button.urgent { + color: @red; } /* Clock */ #clock { background-color: transparent; - border-radius: 8px; - border: 1px solid alpha(@text, 0.15); - color: @gold; - min-width: 16px; - margin: 1px 3px 1px 3px; - padding-left: 6px; - padding-right: 6px; - } - - /* Tooltip */ - tooltip { - opacity: 1; - padding: 4px; - background-color: @base; - border: 1px solid alpha(@text, 0.15); - border-radius: 8px; - font-size: 12px; - } - - tooltip label { - color: @subtle; - font-weight: normal; + color: @fg; + padding: 0 8px; } ''; };