0
0
Fork 0
mirror of https://github.com/stronk-dev/Tokyo-Night-Linux.git synced 2024-10-17 20:58:16 -04:00
tokyo-night-linux/.config/polybar/hack/scripts/check-network
2021-07-18 11:26:12 +02:00

20 lines
503 B
Bash
Executable file

#!/usr/bin/env bash
count=0
connected="說"
disconnected="ﲁ"
ID="$(ip link | awk '/state UP/ {print $2}')"
while true; do
if (ping -c 1 archlinux.org || ping -c 1 google.com || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then
if [[ $ID == e* ]]; then
echo "$connected Online" ; sleep 25
else
echo "$connected Online" ; sleep 25
fi
else
echo "$disconnected Offline" ; sleep 5
fi
done