dotfiles/de/home/.config/eww/scripts/bar/networking
2025-03-12 18:45:01 -07:00

13 lines
170 B
Bash
Executable file

#!/bin/bash
function ifstatus(){
echo $1
echo $2
}
ip monitor address | {
while read -r event; do
# echo hi ${event};
ifstatus "${1}" "${event}"
done;
}