al-skel/home/bin/check-network

29 lines
711 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2018-06-01 21:19:37 -05:00
count=0
disconnected="/"
disconnected2="\\"
wireless_connected=""
ethernet_connected=""
while true; do
if ping -c1 archlabslinux.com &>/dev/null || ping -c1 bitbucket.org &>/dev/null || ping -c1 github.com &>/dev/null; then
# avoid checking what type of interface it is every loop
2018-06-01 21:19:37 -05:00
if (( count < 1 )); then
ID="$(ip link | awk '/state UP/ {print $2}')"
((count++))
fi
2018-02-26 23:01:09 -06:00
if [[ $ID == e* ]]; then
echo "$ethernet_connected" ; sleep 20
else
echo "$wireless_connected" ; sleep 20
fi
else
echo "$disconnected" ; sleep 0.6
echo "$disconnected2" ; sleep 0.6
fi
done