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