diff options
author | Eddy Pedroni <epedroni@pm.me> | 2024-12-22 11:17:36 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2024-12-22 11:17:36 +0100 |
commit | 848e0c573c3b4cf6553e06c9ce19560a4b003bcf (patch) | |
tree | a66e22d12066be56d4ebecdc3c4df5c6dd933858 | |
parent | 94b84430683a47a379da0554d38447167caf8bd0 (diff) |
Fix wlan IP address in status barcustom
-rwxr-xr-x | dwm-statusbar | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dwm-statusbar b/dwm-statusbar index 383cd75..69b9734 100755 --- a/dwm-statusbar +++ b/dwm-statusbar @@ -241,14 +241,12 @@ print_wlan() { icon_colour=${colour_neutral} wlan_colour=${colour_normal} fi - - wlan_strength="${wlan_strength}%" else icon_colour=${colour_faded} fi - echo -ne "${icon_colour}\uE401${wlan_colour}${wlan_ip} ${wlan_strength}" + echo -ne "${icon_colour}\uE401${wlan_colour}${wlan_ip} ${wlan_strength}%" } while true; do |