opt/pulseaudio
2023-01-06 15:33:53 +00:00
..
.footprint pulseaudio: 16.0 -> 16.1 2022-06-29 19:11:57 +02:00
.signature pulseaudio: don't create a pulse system user by default, run a user session instead. included in README.md 2023-01-06 15:33:53 +00:00
Pkgfile pulseaudio: don't create a pulse system user by default, run a user session instead. included in README.md 2023-01-06 15:33:53 +00:00
post-install pulseaudio: cleaning up 2022-05-27 10:26:28 +02:00
README.md pulseaudio: don't create a pulse system user by default, run a user session instead. included in README.md 2023-01-06 15:33:53 +00:00

pulseaudio

server shutting down when used with a WM

If you are not running a fully fledged DE you might have trouble with pulseaudio shutting down after being idle for a while. You can work around this by starting pulseaudio like this:

~/.xinitrc #!/bin/bash pulseaudio --start --exit-idle-time=-1 --log-target=syslog & exec /usr/bin/myawesomewm

system mode

See What is wrong with system mode? PulseAudio for more information.

This was previously a pre-install script:

#!/bin/sh

# check for pulseaudio group or add one
getent group pulse || /usr/sbin/groupadd pulse
getent group pulse-access || /usr/sbin/groupadd pulse-access

# check for pulseaudio user or add one
getent passwd pulse || /usr/sbin/useradd -g pulse -d /var/lib/pulse -s /bin/false -c "Pulseaudio User" pulse

# lock the account
/usr/bin/passwd -l pulse