mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
21 lines
535 B
Bash
Executable File
21 lines
535 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
count=0
|
|
disconnected="睊"
|
|
wireless_connected="直"
|
|
ethernet_connected="泌"
|
|
|
|
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 "$ethernet_connected" ; sleep 25
|
|
else
|
|
echo "$wireless_connected" ; sleep 25
|
|
fi
|
|
else
|
|
echo "$disconnected" ; sleep 0.5
|
|
fi
|
|
done
|