blob: e69e5bb99dda4e7c99ad8681f5c6e110e87f1d30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# Emit waybar JSON describing wifi link state. Uses iwctl (from iwd) so we
# don't need the separate `iw` package. Handles bond-slaved wlan where
# waybar's built-in network module fails to detect wifi.
set -eu
iface=wlan0
# iwctl emits ANSI colour codes even when stdout is a pipe; strip them.
out=$(iwctl station "$iface" show 2>/dev/null | sed 's/\x1b\[[0-9;]*[a-zA-Z]//g' || true)
state=$(printf '%s\n' "$out" | awk '/ State / {print $NF; exit}')
if [ "$state" != "connected" ]; then
printf '{"text":"wifi off","class":"down"}\n'
exit 0
fi
ssid=$(printf '%s\n' "$out" |
sed -n 's/^[[:space:]]*Connected network[[:space:]]\{2,\}//p' |
sed 's/[[:space:]]*$//')
rssi=$(printf '%s\n' "$out" |
sed -n 's/^[[:space:]]*\*\{0,1\}[[:space:]]*AverageRSSI[[:space:]]\{2,\}//p' |
awk '{print $1; exit}')
pct=$(awk -v r="${rssi:-0}" 'BEGIN{p=2*(r+100); if(p>100)p=100; if(p<0)p=0; printf "%d",p}')
color=$(awk -v p="$pct" 'BEGIN{
if (p < 20) print "#fb4934"
else if (p < 40) print "#fe8019"
else if (p < 70) print "#fabd2f"
else print "#b8bb26"
}')
printf '{"text":"%s <span color=\x27%s\x27>%s%%</span>","class":"up","tooltip":"%s · %s dBm"}\n' \
"$ssid" "$color" "$pct" "$iface" "$rssi"
|