aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/hyprland/.local
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-27 07:29:20 -0600
committerCraig Jennings <c@cjennings.net>2026-01-27 07:29:20 -0600
commitaaf51023a5ef956e67824b427c5374a2ad310deb (patch)
tree2b881047fa2722f33a358f8df4af00ff8a804c6c /dotfiles/hyprland/.local
parenta235311f544ae076fce7a4b4c6b339af2e4aab28 (diff)
downloadarchsetup-aaf51023a5ef956e67824b427c5374a2ad310deb.tar.gz
archsetup-aaf51023a5ef956e67824b427c5374a2ad310deb.zip
fix(waybar): show red network icon when disconnected
Added themed disconnected color to netspeed module CSS across base, dupre, and hudson styles. Changed disconnected label to "Offline".
Diffstat (limited to 'dotfiles/hyprland/.local')
-rwxr-xr-xdotfiles/hyprland/.local/bin/waybar-netspeed2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/hyprland/.local/bin/waybar-netspeed b/dotfiles/hyprland/.local/bin/waybar-netspeed
index 97e8e5e..a6296b0 100755
--- a/dotfiles/hyprland/.local/bin/waybar-netspeed
+++ b/dotfiles/hyprland/.local/bin/waybar-netspeed
@@ -6,7 +6,7 @@
INTERFACE=$(ip route | awk '/default/ {print $5; exit}')
if [ -z "$INTERFACE" ]; then
- echo '{"text": "󰤭 Disconnected", "tooltip": "No network connection", "class": "disconnected"}'
+ echo '{"text": "󰤭 Offline", "tooltip": "No network connection", "class": "disconnected"}'
exit 0
fi