Skip to content

Instantly share code, notes, and snippets.

@nigamankit7
Last active December 31, 2015 06:28
Show Gist options
  • Save nigamankit7/7947284 to your computer and use it in GitHub Desktop.
Save nigamankit7/7947284 to your computer and use it in GitHub Desktop.
Script to send pushover notification from Transmission after download complete
#!/bin/sh
curl -s \
-F "token=APP_TOKEN" \
-F "user=USER_TOKEN" \
-F "title=Download Finished" \
-F "message=$TR_TORRENT_NAME: $TR_TIME_LOCALTIME" \
https://api.pushover.net/1/messages > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment