Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active December 23, 2015 16:29
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 cirrusUK/6662747 to your computer and use it in GitHub Desktop.
Save cirrusUK/6662747 to your computer and use it in GitHub Desktop.
simple bash script using notify-send to get alerted in 10 minutes ( when pizza be ready)
#!/bin/bash
sleep 10m && notify-send -i ~/.icons/warning.svg "⚠⚠⚠ Pizza Is Done ⚠⚠⚠" "Move yer Arse" && echo -e "\a" &
@kylescottmcgill
Copy link

#!/bin/bash

sleep 10m && notify-send -i ~/.icons/warning.svg  "⚠⚠⚠ Pizza Is Done ⚠⚠⚠"         "Move yer Arse" & echo -e "\a" &

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment