2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-04-09 02:01:51 +00:00
|
|
|
# Show wifi 📶 and percent strength or 📡 if none.
|
|
|
|
# Show 🌐 if connected to ethernet or ❎ if none.
|
2020-11-14 20:11:08 +00:00
|
|
|
# Show 🔒 if a vpn connection is active
|
2020-04-09 02:01:51 +00:00
|
|
|
|
2019-11-23 21:23:24 +00:00
|
|
|
case $BLOCK_BUTTON in
|
2020-05-25 21:06:24 +00:00
|
|
|
1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;;
|
2020-04-09 02:01:51 +00:00
|
|
|
3) notify-send "🌐 Internet module" "\- Click to connect
|
2021-09-23 16:15:42 +00:00
|
|
|
❌: wifi disabled
|
2019-11-23 21:23:24 +00:00
|
|
|
📡: no wifi connection
|
|
|
|
📶: wifi connection with quality
|
|
|
|
❎: no ethernet
|
|
|
|
🌐: ethernet working
|
2020-11-14 20:11:08 +00:00
|
|
|
🔒: vpn is active
|
2019-11-23 21:23:24 +00:00
|
|
|
" ;;
|
2020-05-07 21:31:42 +00:00
|
|
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
2019-11-23 21:23:24 +00:00
|
|
|
esac
|
|
|
|
|
2021-09-27 13:48:53 +00:00
|
|
|
if grep -xq 'up' /sys/class/net/w*/operstate 2>/dev/null ; then
|
|
|
|
wifiicon="$(awk '/^\s*w/ { print "📶", int($3 * 100 / 70) "% " }' /proc/net/wireless)"
|
|
|
|
elif grep -xq 'down' /sys/class/net/w*/operstate 2>/dev/null ; then
|
|
|
|
grep -xq '0x1003' /sys/class/net/w*/flags && wifiicon="📡 " || wifiicon="❌ "
|
|
|
|
fi
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-11-14 20:11:08 +00:00
|
|
|
printf "%s%s%s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate 2>/dev/null)" "$(sed "s/.*/🔒/" /sys/class/net/tun*/operstate 2>/dev/null)"
|