internet script fix
This commit is contained in:
parent
b53b599bc5
commit
e88b3a72b8
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
# Show 🌐 if connected to ethernet or ❎ if none.
|
# Show 🌐 if connected to ethernet or ❎ if none.
|
||||||
|
|
||||||
case $BLOCK_BUTTON in
|
case $BLOCK_BUTTON in
|
||||||
1) $TERMINAL -e nmtui ;;
|
1) setsid "$TERMINAL" -e nmtui & ;;
|
||||||
3) notify-send "🌐 Internet module" "\- Click to connect
|
3) notify-send "🌐 Internet module" "\- Click to connect
|
||||||
📡: no wifi connection
|
📡: no wifi connection
|
||||||
📶: wifi connection with quality
|
📶: wifi connection with quality
|
||||||
|
@ -13,7 +13,7 @@ case $BLOCK_BUTTON in
|
||||||
" ;;
|
" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
grep "down" /sys/class/net/w*/operstate && wifiicon="📡" ||
|
grep -q "down" /sys/class/net/w*/operstate && wifiicon="📡" ||
|
||||||
wifiicon="$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')"
|
wifiicon="$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')"
|
||||||
|
|
||||||
printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)"
|
printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)"
|
||||||
|
|
Loading…
Reference in a new issue