blob: 85999bc3e76d00c25dfa0af9b8afc8acf433dc85 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
case $BUTTON in
1)notify-send --expire-time=60000 "IP Addresses" "$(ip a | awk '/\/24|\/64/ {if($5=="temporary")print $2 " " $5;else print $2;}')";;
3)urxvt -e ~/.local/bin/statusbar/bar-ipv4
esac
ip a | awk '/\/24/ { print $2 }' | cut -d '/' -f 1
|