Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UtahDave/6e51673b212deab90a00f84ca290d9c3 to your computer and use it in GitHub Desktop.
Save UtahDave/6e51673b212deab90a00f84ca290d9c3 to your computer and use it in GitHub Desktop.
#!/bin/bash
touch /tmp/Recent.xyz
while true
do
echo "Checking again..."
wget -q https://apt.dockerproject.org/repo/dists/ubuntu-xenial/main/binary-amd64/Release -O /tmp/Release.xyz
if test /tmp/Release.xyz -nt Recent.xyz; then
mplayer /usr/share/sounds/ubuntu/stereo/phone-incoming-call.ogg
fi
sleep 5;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment