]> code.delx.au - dotfiles/blob - .rtorrent.rc
fontconfig: -apple-system font
[dotfiles] / .rtorrent.rc
1 # vim: set ft=sh:
2
3 # Default directory to save the downloaded torrents.
4 directory = ~/downloads
5
6 # Default session directory. Make sure you don't run multiple instance
7 # of rtorrent using the same session directory. Perhaps using a
8 # relative path?
9 session = ~/session
10
11 # Global upload and download rate in KiB. "0" for unlimited.
12 download_rate = 1000
13 upload_rate = 0
14
15 # The ip address reported to the tracker.
16 ip = A.B.C.D
17 ###schedule = ip_tick,0,1800,ip=something.example.com
18
19 # Port range to use for listening.
20 port_range = 7100-7100
21
22 # Start opening ports at a random position within the port range.
23 port_random = yes
24
25 # Try to use encryption
26 encryption = allow_incoming,try_outgoing,enable_retry
27
28 # Check hash for finished torrents. Might be usefull until the bug is
29 # fixed that causes lack of diskspace not to be properly reported.
30 check_hash = yes
31
32 # Set whetever the client should try to connect to UDP trackers.
33 use_udp_trackers = yes
34
35 # Watch a directory for new torrents, and stop those that have been deleted.
36 schedule = watch_directory,5,5,load_start=~/watch/*.torrent
37 schedule = tied_directory,5,5,start_tied=
38 schedule = untied_directory,5,5,close_untied=
39
40 # Close torrents when diskspace is low.
41 schedule = low_diskspace,5,60,close_low_diskspace=100M
42
43 # Link when finished
44 ###system.method.set_key = event.download.finished,move_complete,"execute=cp,-Rl,$d.get_base_path=,~/unsorted/"
45
46 # Stop torrents when reaching upload ratio in percent, when also reaching total
47 # upload in bytes, or when reaching final upload ratio in percent.
48 ###ratio.enable=
49 ###ratio.min.set=100
50 ###ratio.max.set=300
51 ###ratio.upload.set=20M
52 ###system.method.set = group.seeding.ratio.command, d.close=, d.erase=
53 ###schedule = ratio,60,60,"stop_on_ratio=200,200M"
54
55 # Severe throttling during peak period
56 ###schedule = peak_throttle1,12:00:00,24:00:00,"upload_rate=6"
57 ###schedule = peak_throttle1,12:00:00,24:00:00,"download_rate=32"
58 ###schedule = offpeak_throttle1,02:00:00,24:00:00,"upload_rate=16"
59 ###schedule = offpeak_throttle2,02:00:00,24:00:00,"download_rate=128"
60