diff options
Diffstat (limited to '.local/bin/internet')
| -rwxr-xr-x | .local/bin/internet | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.local/bin/internet b/.local/bin/internet new file mode 100755 index 0000000..603714c --- /dev/null +++ b/.local/bin/internet @@ -0,0 +1,22 @@ +#!/bin/sh + +# Show wifi 📶 and percent strength or 📡 if none. +# Show 🌐 if connected to ethernet or ❎ if none. + +case $BLOCK_BUTTON in + 1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;; + 3) notify-send "🌍 Internet module" "\- Click to connect +📡: no wifi connection +📶: wifi connection with quality +❎: no ethernet +🌍: ethernet working +" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +esac + +case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in + down) wifiicon="📡 " ;; + up) wifiicon="$(awk '/^\s*w/ { print "📶", int($3 * 100 / 70) "% " }' /proc/net/wireless)" ;; +esac + +printf "%s%s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/⬌/" /sys/class/net/e*/operstate 2>/dev/null)" |