diff options
author | ZachIR <zachir@librem.one> | 2025-08-09 08:45:39 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-08-09 08:45:39 -0500 |
commit | 722364ceebdbb709c8469249f6fd53037a5fe30b (patch) | |
tree | f8c8a099117c301e28ac4fe6f067eb34d895e642 /sb-internet | |
parent | 746ef9801cb5da6f29ddb11707aad3f414e3fde2 (diff) |
Diffstat (limited to 'sb-internet')
-rwxr-xr-x | sb-internet | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sb-internet b/sb-internet new file mode 100755 index 0000000..8dfd24f --- /dev/null +++ b/sb-internet @@ -0,0 +1,18 @@ +#!/bin/sh + +case $BLOCK_BUTTON in + 1) "$TERMINAL" -e nmtui; pkill -RTMIN+4 dwmblocks ;; + 2) notify-send "Internet module" "\- Click to connect +X : no wifi connection ++ : wifi connection +_ : no ethernet +- : ethernet working" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +esac + +case "$(cat /sys/class/net/w*/operstate 2>/dev/null)" in + down) wifiicon="X" ;; + up) wifiicon="$(awk '/^\s*w/ { print "+", int($3 * 100 / 70) "% " }' /proc/net/wireless)" ;; +esac + +printf "[%s%s]" "$wifiicon" "$(sed "s/down/_/;s/up/-/" /sys/class/net/e*/operstate 2>/dev/null)" |