diff options
Diffstat (limited to 'scripts/wifi.sh')
-rwxr-xr-x | scripts/wifi.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/wifi.sh b/scripts/wifi.sh index 51262c6..8cd8f41 100755 --- a/scripts/wifi.sh +++ b/scripts/wifi.sh @@ -5,6 +5,9 @@ if="${BLOCK_INSTANCE:-wlp3s0}" [[ ! -d /sys/class/net/${if} ]] && exit 0 +# operstate: down, up +[[ "$(cat /sys/class/net/$if/operstate)" = 'down' ]] && exit 0 + show_ap_mac=0 show_ap_quality=0 show_ap_name=0 |