~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.local/bin/statusbar/sb-ip -rwxr-xr-x 376 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Show local IP address with  (f0ac) icon

case $BLOCK_BUTTON in
	1) notify-send " IP Address" "$(hostname -I | tr ' ' '\n')" ;;
	3) notify-send " IP module" "Shows local IP address
- Click for all IPs" ;;
	6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac

ip=$(hostname -I | awk '{print $1}')

if [ -n "$ip" ]; then
	printf " %s\n" "$ip"
else
	printf " --\n"
fi