summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-04-14 11:10:26 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-04-14 11:10:26 -0400
commite88b3a72b8273d3b362fcc32b8e945dd66de8120 (patch)
treed987c28a5c474ceae29d387294f60022e7f55b4e
parentb53b599bc57e0d47db4a1ed250a0c17eee2ed8ce (diff)
downloadeibhear-e88b3a72b8273d3b362fcc32b8e945dd66de8120.tar.gz
eibhear-e88b3a72b8273d3b362fcc32b8e945dd66de8120.tar.zst
eibhear-e88b3a72b8273d3b362fcc32b8e945dd66de8120.zip
internet script fix
-rwxr-xr-x.local/bin/statusbar/internet4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/statusbar/internet b/.local/bin/statusbar/internet
index 82b1080..518d6d7 100755
--- a/.local/bin/statusbar/internet
+++ b/.local/bin/statusbar/internet
@@ -4,7 +4,7 @@
# Show 🌐 if connected to ethernet or ❎ if none.
case $BLOCK_BUTTON in
- 1) $TERMINAL -e nmtui ;;
+ 1) setsid "$TERMINAL" -e nmtui & ;;
3) notify-send "🌐 Internet module" "\- Click to connect
📡: no wifi connection
📶: wifi connection with quality
@@ -13,7 +13,7 @@ case $BLOCK_BUTTON in
" ;;
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) "%" }')"
printf "%s %s\n" "$wifiicon" "$(sed "s/down/❎/;s/up/🌐/" /sys/class/net/e*/operstate)"