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.
|
|
|
|
|
2019-11-23 21:23:24 +00:00
|
|
|
case $BLOCK_BUTTON in
|
2020-04-14 15:10:26 +00:00
|
|
|
1) setsid "$TERMINAL" -e nmtui & ;;
|
2020-04-09 02:01:51 +00:00
|
|
|
3) notify-send "🌐 Internet module" "\- Click to connect
|
2019-11-23 21:23:24 +00:00
|
|
|
📡: no wifi connection
|
|
|
|
📶: wifi connection with quality
|
|
|
|
❎: no ethernet
|
|
|
|
🌐: ethernet working
|
|
|
|
" ;;
|
|
|
|
esac
|
|
|
|
|
2020-04-14 15:10:26 +00:00
|
|
|
grep -q "down" /sys/class/net/w*/operstate && wifiicon="📡" ||
|
2020-04-09 02:01:51 +00:00
|
|
|
wifiicon="$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')"
|
2019-11-23 21:23:24 +00:00
|
|
|
|
2020-03-22 13:08:05 +00:00
|
|
|
printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)"
|