-
Notifications
You must be signed in to change notification settings - Fork 8
Transmission
For nyaa to be able to send requests to Transmission, remote control must be enabled. Depending on which version of Transmission you have installed, the process may be different.
For transmission-gtk or transmission-qt: you can enable remote control by going to Edit > Remote
and enabling Allow remote access
.
For transmission-cli: as long as you have the daemon running everything should work fine.
Tip
For either method, enabling authentication with a username and password is recommended for improved security.
If you've selected Transmission as your default download client, you will find this towards the bottom of your config (with only the required values present).
# Your config in ~/.config/nyaa/config.toml or %appdata%\nyaa\config\config.toml
# ...
download_client = "Transmission"
# ...
[client.transmission]
base_url = "http://localhost:9091/transmission/rpc" # required
username = "user" # all optional here and below
password = "pass"
password_file = "/path/to/password.txt"
use_magnet = true
labels = [ # must not contain commas in any of the labels
"label1",
"label2"
]
paused = false
peer_limit = 100
download_dir = "~/Downloads/"
bandwidth_priority = "Low"
The password can either be defined in password_file
(a raw text file containing only the password) or hardcoded in password
.
This value can be one of the following: Low
, Normal
, High