Automatic icon indicating copy to clipboard operation
Automatic copied to clipboard

Torrent added script

Open xpt3 opened this issue 8 years ago • 1 comments

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 avatar Mar 11 '16 02:03 xpt3

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

xpt3 avatar Apr 05 '16 03:04 xpt3