Guest User

Untitled

a guest
May 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. # Default directory to save the downloaded torrents.
  2. directory = ~/Downloads/Incomplete
  3.  
  4. # Default session directory. Make sure you don't run multiple instance
  5. # of rtorrent using the same session directory. Perhaps using a
  6. # relative path?
  7. session = ~/Downloads/Session
  8.  
  9. # Watch a directory for new torrents, restart torrents that have been
  10. # copied back and stop those that have been deleted.
  11. #I want finished torrents to be moved to another location depending on watch_directory
  12. #This doesn't work, :/ but even if it did, it would just move the torrents.... I still want to be able to seed
  13. #How do I do that, that I move then on complete, and still be able to seed
  14. schedule = watch_directory_1,5,5,"load_start=~/Downloads/Movie/*.torrent,d.set_custom2=1,d.set_custom1=~/Movies/"
  15. schedule = watch_directory_2,5,5,"load_start=~/Downloads/Xbox/*.torrent,d.set_custom2=1,d.set_custom1=~/Downloads/Xbox/"
  16. schedule = watch_directory_3,5,5,"load_start=~/Downloads/Music/*.torrent,d.set_custom2=1,d.set_custom1=~/Downloads/Music/"
  17. schedule = watch_directory_4,5,5,"load_start=~/Downloads/Program/*.torrent,d.set_custom2=1,d.set_custom1=~/Downloads/Program/"
  18. schedule = watch_directory_5,5,5,"load_start=~/Downloads/Random/*.torrent,d.set_custom2=1,d.set_custom1=~/Download/Random/"
  19.  
  20. #schedule = watch_directory,5,5,load_start=~/Downloads/*.torrent,d.set_custom2=1"
  21. schedule = tied_directory,5,5,start_tied=
  22. schedule = untied_directory,5,5,close_untied=
  23.  
  24. # the above line for Mac OS X and *BSD.
  25. on_finished = move_complete,"execute=mv,-n,$d.get_base_path=,$d.get_custom1= ;d.set_directory=$d.get_custom1="
  26.  
  27. # Clear customX when download completes.
  28. on_finished = set_done_var,d.set_custom2=
  29.  
  30. # Erase data files when a download is removed that still has customX set.
  31. on_erase = rm_files,"branch=d.get_custom2=,\"execute={rm,-rf,--,$d.get_base_path=}\""
  32.  
  33. # Close torrents when diskspace is low.
  34. schedule = low_diskspace,5,60,close_low_diskspace=400M
Add Comment
Please, Sign In to add comment