Skip to content

Instantly share code, notes, and snippets.

@sirupsen
Last active October 8, 2015 10:18
Show Gist options
  • Save sirupsen/3317833 to your computer and use it in GitHub Desktop.
Save sirupsen/3317833 to your computer and use it in GitHub Desktop.
Simple program to schedule a reminder on OS X.
#!/bin/bash
at $2 << !!
say $1
osascript -e 'tell app "System Events" to display dialog "Reminder: $1"'
!!
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment