13 lines
238 B
Text
13 lines
238 B
Text
|
#!/usr/bin/bash
|
||
|
|
||
|
while true; do
|
||
|
if (ping archlinux.org -W 5 -c 1); then
|
||
|
echo "Ping responded; internet is up."
|
||
|
notify-send "Internet is up." --app-name="Ping Test" --icon="$(pwd)/is-back-icon.png"
|
||
|
exit 0
|
||
|
else
|
||
|
continue
|
||
|
fi
|
||
|
done
|
||
|
|