Skip to content

Instantly share code, notes, and snippets.

@aaronjgreenberg
Last active December 16, 2015 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aaronjgreenberg/5381713 to your computer and use it in GitHub Desktop.
Save aaronjgreenberg/5381713 to your computer and use it in GitHub Desktop.
Send Mac OS X Notifications using Python and terminal-notifier.
notifier_args = [
'terminal-notifier',
'-title',
'S3 Upload',
'-message',
'Copied to clipboard!'
]
subprocess.check_call(notifier_args)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment