Created
January 23, 2011 00:16
-
-
Save bulljit/791650 to your computer and use it in GitHub Desktop.
Transmission-Daemon Script: Notify Iphone of completed torrent via Prowl
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 -k https://prowl.weks.net/publicapi/add -F apikey=[replace with your growl API key] -F priority=-1 -F application="Transmission" -F description="$TR_TORRENT_NAME completed on $TR_TIME_LOCALTIME" | |
# /bin/curl -k -F apikey=[your Prowl API key here] -F application=Transmission -F event="Download Complete" -F description="$TR_TORRENT_NAME completed on $TR_TIME_LOCALTIME" https://api.prowlapp.com/publicapi/add |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference: https://forum.transmissionbt.com/viewtopic.php?f=3&t=8764