mirror of
https://github.com/9001/copyparty.git
synced 2026-09-24 09:10:19 +01:00
27 lines
835 B
Desktop File
27 lines
835 B
Desktop File
# this will start `/usr/bin/copyparty`
|
|
# and read config from `$HOME/.config/copyparty/copyparty.conf`
|
|
#
|
|
# unless you add -q to disable logging, you may want to remove the
|
|
# following line to allow buffering (slightly better performance):
|
|
# Environment=PYTHONUNBUFFERED=x
|
|
|
|
[Unit]
|
|
Description=copyparty file server
|
|
|
|
[Service]
|
|
Type=notify
|
|
SyslogIdentifier=copyparty
|
|
WorkingDirectory=/var/lib/copyparty-jail/srv
|
|
Environment=PYTHONUNBUFFERED=x
|
|
Environment=PRTY_CONFIG=%h/.config/copyparty/copyparty.conf
|
|
ExecReload=/bin/kill -s USR1 $MAINPID
|
|
|
|
# ensure there is a config
|
|
ExecStartPre=/bin/bash -c 'if [[ ! -f %h/.config/copyparty/copyparty.conf ]]; then mkdir -p %h/.config/copyparty; cp -v /etc/copyparty.conf %h/.config/copyparty/; fi'
|
|
|
|
# run copyparty
|
|
ExecStart=/usr/bin/python3 /usr/bin/copyparty
|
|
|
|
[Install]
|
|
WantedBy=default.target
|