diff options
author | zachir <zachir@librem.one> | 2025-07-30 06:52:19 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-30 06:52:19 -0500 |
commit | 96e30fbe6d97242feacfd6f160396f01ec87a9f4 (patch) | |
tree | ba6cbfe5a601d59a9b01d6c4a3a72240f516d1d0 /waybar/style.css | |
parent | 442246498a50440a19d9cba78e83abb55d542879 (diff) | |
parent | 758bf486be2560343561b1d03bffe998f6f932b4 (diff) |
Merge branch 'master' into cas
Diffstat (limited to 'waybar/style.css')
-rw-r--r-- | waybar/style.css | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/waybar/style.css b/waybar/style.css index 9398381..ff6dc9a 100644 --- a/waybar/style.css +++ b/waybar/style.css @@ -3,7 +3,7 @@ margin: 0px; border-radius: 0px; /* `otf-font-awesome` is required to be installed for icons */ - font-family: FiraCode Nerd Font Mono; + font-family: JetBrainsMono Nerd Font; font-size: 18px; min-height: 0px; min-width: 0px; @@ -89,6 +89,7 @@ window#waybar.hidden { #custom-media, #custom-launcher, #custom-power, +#custom-battery, #custom-layout, #custom-updater, #custom-snip, @@ -215,7 +216,26 @@ label:focus { background-color: #1b1d1c; font-size: 18px; margin-right: 5px; +} + +#custom-battery{ + background-color: #1b1d1c; + font-size: 18px; +} +#custom-battery.battery_low{ + background-color: yellow; + color: #1b1d1c; +} + +#custom-battery.battery_crit{ + background-color: red; + color: #1b1d1c; +} + +#custom-battery.battery_charging{ + background-color: #1d1b1c; + color: #198844; } #custom-launcher{ |