This commit is contained in:
Bartek Stalewski 2022-03-07 21:03:13 +01:00
parent f9559a2fb1
commit a2299dc9c0

View File

@ -1,9 +1,9 @@
#!/bin/bash
case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in
down) printf "^c#161616^^b#fd4285^\ue63e no wifi^d^" ;;
down) printf "^c#ffffff^^b#770000^\ue63e no wifi^d^" ;;
up)
[ -n "$(ip address show dev wlan0 | grep 'inet ')" ] \
&& printf "\ue63e $(iw dev wlan0 info | grep 'ssid ' | cut -d' ' -f2-)" \
|| printf "^c#161616^^b#fd4285^\ue63e no ip^d^" ;;
|| printf "^c#ffffff^^b#770000^\ue63e no ip^d^" ;;
esac