Skip to content

Instantly share code, notes, and snippets.

@JanKoppe
Created July 30, 2018 10:06
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 JanKoppe/1306f202e754bcf1cd293cf56cc5fe1e to your computer and use it in GitHub Desktop.
Save JanKoppe/1306f202e754bcf1cd293cf56cc5fe1e to your computer and use it in GitHub Desktop.
remindme script
#!/bin/bash
# Reminds you in xx minutes with notify-send, using at/atd
MINUTES=${1}
MESSAGE=${2:-reminder}
at now + "${MINUTES}" minutes << EOF
notify-send -c reminder -u critical 'Reminder from ${MINUTES} minutes ago' '${MESSAGE}'
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment