diff options
| author | ryukamish <[email protected]> | 2026-04-10 17:41:01 +0530 |
|---|---|---|
| committer | ryukamish <[email protected]> | 2026-04-10 17:41:01 +0530 |
| commit | 9c398204855235c0de707942a443dbfaf4831091 (patch) | |
| tree | 26859624df2aff6507f946e277aa7dac7062aa3a /waybar/style.css | |
| parent | eafcdda7b58a63bf8b6be15718a41c186ff497d5 (diff) | |
fix: minimal waybar with less deps
Diffstat (limited to 'waybar/style.css')
| -rw-r--r-- | waybar/style.css | 123 |
1 files changed, 12 insertions, 111 deletions
diff --git a/waybar/style.css b/waybar/style.css index 52f013a..6590d83 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -1,127 +1,28 @@ -@import "colors.css"; - * { border: none; - font-family: "GeistMono Nerd Font Propo, sans-serif"; + font-family: "JetBrainsMono Nerd Font Propo, monospace"; font-size: 12px; font-weight: bold; min-height: 0; } -/* Keyframe animations */ -@keyframes urgent-blink { - 0% { - color: #eb4d4b; - } - - 50% { - color: #ffffff; - } - - 100% { - color: #eb4d4b; - } -} - window#waybar { - background-color: @background; - color: @foreground; -} - -/* Workspaces */ -#workspaces { - margin-right: 0.75rem; -} - -#workspaces button.active { - color: @color1; -} - -#workspaces button.empty.active { - color: @color2; - /* opacity: 1; */ -} - -/* #workspaces button.empty { */ -/* opacity: 0.2; */ -/* } */ - -/* #workspaces button:not(.empty) { */ -/* opacity: 0.7; */ -/* } */ - -#workspaces button.urgent { + background-color: #000000; color: #ffffff; - background-color: rgba(255, 0, 0, 0.5); - border-radius: 0; } -/* Modules */ -#battery, -#clock { - margin: 0 0.45rem; +#workspaces button { + padding: 0 6px; } -#backlight, -#bluetooth, -#cpu, -#temperature, +#clock, +#battery, +#window, #memory, -#pulseaudio { - margin: 0 0.45rem; -} - +#network, +#mpris, +#bluetooth, +#pulseaudio, #tray { - margin-left: 0.25rem; -} - -#bluetooth.connected { - color: @color1; -} - -#battery:not(.charging).warning { - color: #FFA500; -} - -#battery:not(.charging).critical { - color: #FF0000; -} - -#network.disconnected { - color: #FF0000; -} - -/* Groups */ -#audio, -#expand-tray, -#hardware, -#powerofmachine, -#network { - margin: 0 0.55rem; -} - -#power-profiles-daemon.power-saver { - color: rgba(0, 250, 0, 1); -} - -#power-profiles-daemon.performance { - color: rgba(200, 0, 0, 1); -} - -/* Custom modules */ -#custom-screenrecording-indicator { - color: #ff0000; - animation-name: urgent-blink; - animation-duration: 1s; - animation-timing-function: steps(18); - animation-iteration-count: infinite; - animation-direction: alternate; -} - -#custom-uptime { - margin: 0 0.55rem; -} - -#custom-pomodoro { - margin: 0 0.55rem; + padding: 0 8px; } |
