summaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.config/themes/dupre/waybar.css
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-27 08:51:31 -0600
committerCraig Jennings <c@cjennings.net>2026-01-27 08:51:31 -0600
commitea569d1a0279674863661c7f6694c0ba6fc5cb7d (patch)
tree4a17d53d7574b4062c7626915bdf9e1897f194c8 /dotfiles/hyprland/.config/themes/dupre/waybar.css
parent7f07e47237606425d45f628f25c6029223b420e7 (diff)
feat(waybar): add warning/critical color thresholds for temperature and disk
Temperature turns yellow at 70°C, red at 80°C using built-in waybar states. Disk replaced with custom script that turns yellow at 80% full, red at 90%, working across ZFS/btrfs/ext4. Colors themed per dupre/hudson. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'dotfiles/hyprland/.config/themes/dupre/waybar.css')
-rw-r--r--dotfiles/hyprland/.config/themes/dupre/waybar.css20
1 files changed, 18 insertions, 2 deletions
diff --git a/dotfiles/hyprland/.config/themes/dupre/waybar.css b/dotfiles/hyprland/.config/themes/dupre/waybar.css
index c5333f5..18ba0f1 100644
--- a/dotfiles/hyprland/.config/themes/dupre/waybar.css
+++ b/dotfiles/hyprland/.config/themes/dupre/waybar.css
@@ -49,7 +49,7 @@ window#waybar {
#cpu,
#temperature,
#memory,
-#disk,
+#custom-disk,
#custom-netspeed,
#battery,
#wireplumber,
@@ -73,7 +73,7 @@ window#waybar {
#cpu:hover,
#temperature:hover,
#memory:hover,
-#disk:hover,
+#custom-disk:hover,
#custom-netspeed:hover,
#wireplumber:hover,
#sysmonitor:hover,
@@ -94,6 +94,22 @@ window#waybar {
color: #d47c59;
}
+#temperature.warning {
+ color: #d7af5f;
+}
+
+#temperature.critical {
+ color: #d47c59;
+}
+
+#custom-disk.warning {
+ color: #d7af5f;
+}
+
+#custom-disk.critical {
+ color: #d47c59;
+}
+
#battery.warning {
color: #d7af5f;
}