16 lines
304 B
SYSTEMD
16 lines
304 B
SYSTEMD
|
[Unit]
|
||
|
Description=A spotify playing daemon
|
||
|
Documentation=https://github.com/Spotifyd/spotifyd
|
||
|
Wants=sound.target
|
||
|
After=sound.target
|
||
|
Wants=network-online.target
|
||
|
After=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/bin/spotifyd --no-daemon
|
||
|
Restart=always
|
||
|
RestartSec=12
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=default.target
|