diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-27 07:29:20 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-27 07:29:20 -0600 |
| commit | 79d451b5ec2b1ccfa4791fd40d81439831039a44 (patch) | |
| tree | 4603a995a1b12637435fc27761fb1765237be2c4 /dotfiles/hyprland/.local | |
| parent | bbb4fefb84f81b3333e7bcdded8aa65807e06ec9 (diff) | |
| download | archsetup-79d451b5ec2b1ccfa4791fd40d81439831039a44.tar.gz archsetup-79d451b5ec2b1ccfa4791fd40d81439831039a44.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-x | dotfiles/hyprland/.local/bin/waybar-netspeed | 2 |
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 |
