24 lines
796 B
SYSTEMD
24 lines
796 B
SYSTEMD
|
# vim:ft=systemd
|
||
|
# NOTE: This service is ONLY useful IF you have the following:
|
||
|
# * client.conf is set to not autospawn and listen to a socket instead
|
||
|
# * default.pa is configured to start such a socket
|
||
|
# Using this unit file and complaining to me that it doesn't work without
|
||
|
# the other configs in place will result in me not giving a shit
|
||
|
|
||
|
## THIS UNIT DOES NOT START PULSE IN SYSTEM MODE
|
||
|
## THIS UNIT DOES NOT START PULSE IN SYSTEM MODE
|
||
|
## THIS UNIT DOES NOT START PULSE IN SYSTEM MODE
|
||
|
## THIS UNIT DOES NOT START PULSE IN SYSTEM MODE
|
||
|
## THIS UNIT DOES NOT START PULSE IN SYSTEM MODE
|
||
|
[Unit]
|
||
|
Description=Pulseaudio sound server
|
||
|
|
||
|
[Service]
|
||
|
User=pulseaudio
|
||
|
Group=pulseaudio
|
||
|
ExecStart=/usr/bin/pulseaudio --disallow-exit
|
||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|