mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-16 16:29:23 +01:00
conf: add aria2cd.service & aria2.conf (WIP)
This commit is contained in:
parent
c9a69576aa
commit
8ae43d70ff
22
conf/aria2.conf
Normal file
22
conf/aria2.conf
Normal file
@ -0,0 +1,22 @@
|
||||
# ~/.config/aria2
|
||||
# Heavily took from https://wiki.archlinux.org/index.php/Aria2#Example_aria2.daemon
|
||||
|
||||
# TODO: How to continue downloads across restart? How to download into
|
||||
# ~/Downloads without an absolute path?
|
||||
|
||||
|
||||
continue
|
||||
daemon=true
|
||||
#dir=$HOME/Downloads
|
||||
file-allocation=falloc
|
||||
#log-level=warn
|
||||
max-connection-per-server=4
|
||||
max-concurrent-downloads=3
|
||||
max-overall-download-limit=0
|
||||
min-split-size=5M
|
||||
enable-http-pipelining=true
|
||||
|
||||
enable-rpc=true
|
||||
#rpc-listen-all=true
|
||||
#rpc-user=rpcuser
|
||||
#rpc-passwd=rpcpass
|
15
conf/systemd/user/aria2cd.service
Normal file
15
conf/systemd/user/aria2cd.service
Normal file
@ -0,0 +1,15 @@
|
||||
# https://wiki.archlinux.org/index.php/Aria2#Using_Aria2_as_a_Daemon
|
||||
# Needs manually creating config file
|
||||
# TODO: How to continue downloads across restart? How to download into
|
||||
# ~/Downloads without an absolute path?
|
||||
[Unit]
|
||||
Description=Aria2 Daemon
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
ExecStart=/usr/bin/aria2c
|
||||
# Arch Wiki had this, but default is $XDG_CONFIG_HOME/aria2/aria2.conf
|
||||
#--conf-path=/path/to/conf
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
Loading…
Reference in New Issue
Block a user