From b91a830fe91c2819cb0ca9b91dcfdcb02b2a2ead Mon Sep 17 00:00:00 2001 From: ryukamish Date: Sat, 6 Jun 2026 01:22:03 +0530 Subject: add: user configs --- .config/waybar/style.css | 71 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .config/waybar/style.css (limited to '.config/waybar/style.css') diff --git a/.config/waybar/style.css b/.config/waybar/style.css new file mode 100644 index 0000000..a968286 --- /dev/null +++ b/.config/waybar/style.css @@ -0,0 +1,71 @@ +* { + border: none; + font-family: "IoskeleyMono Nerd Font, monospace"; + font-size: 14px; + font-weight: bold; + min-height: 0; +} + +window#waybar { + background-color: #0a0a0a; +} + +#workspaces button.focused { + background-color: #7fc8ff; + color: #0a0a0a; + border-radius: 0; +} + +#workspaces button.urgent { + color: #ffffff; + background: #ff0000; + border-radius: 0; +} + +#battery { + background: transparent; +} + +/* Different battery states indicator */ +#battery.discharging.warning { + color: #ffa500; +} + +#battery.discharging.critical { + color: #ff0000; +} + +#clock, +#battery, +#window, +#custom-vpn, +#memory, +#network, +#mpris, +#bluetooth, +#pulseaudio, +#tray { + padding: 0 12px; +} + +/* add grey color to some modules */ +#network, +#memory, +#bluetooth, +#pulseaudio, +#custom-vpn, +#clock, +#window, +#battery { + color: #cccccc; +} + +#temperature.critical { + color: #ff0000; +} + +/* custom modules */ +#custom-screenrecording-indicator { + color: #ff0000; +} + -- cgit v1.3