I have this set:
Run an external program when a torrent completes
Code: Select all
/home/keith/bin/bt-done "%f" "%n"
/home/keith/bin/bt-done
Code: Select all
#!/bin/bash
echo "$1 $2" > ~/bt/completed
~/bt/completed
Code: Select all
%f %n
So the script is running, and taking arguments, but qbt doesn't seem to be filling in the parameters correctly.
Is it a bug, or am I doing something wrong?