1100101 / Automatic

RSS downloader for Transmission
GNU General Public License v2.0
63 stars 13 forks source link

Torrent added script #18

Open xpt3 opened 8 years ago

xpt3 commented 8 years ago

It's useful to add an option to notify when a torrent is added to Transmission, like the Prowl App integratrion, but more personalized.

This would be similar to the Transmission option to notify when a torrent is finished.

xpt3 commented 8 years ago

I use a script to do that, and I run it with cron

/usr/bin/automatic -f -c automatic.conf -o > automatic.tmp 2>&1

cat automatic.tmp | grep Found | cut -d':' -f5- | rev | cut -d'(' -f2- | rev | while read t do

some notification

notify-send "Torrent added: $t" done