Last active
December 31, 2015 06:28
-
-
Save nigamankit7/7947284 to your computer and use it in GitHub Desktop.
Script to send pushover notification from Transmission after download complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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