void-packages/srcpkgs/pulseaudio/INSTALL
2012-12-18 11:24:00 +01:00

34 lines
597 B
Plaintext

#
# This script creates required dirs for pulseaudio.
#
case "${ACTION}" in
post)
cat <<_EOF
=====================================================================
To make ALSA use PulseAudio globally in your system you'd have to
create /etc/asound.conf with the following contents:
pcm.!default {
type pulse
}
ctl.!default {
type pulse
}
pcm.pulse {
type pulse
}
ctl.pulse {
type pulse
}
=====================================================================a
_EOF
setcap cap_net_raw=ep usr/lib/pulse/proximity-helper 2>/dev/null || \
chmod +s usr/lib/pulse/proximity-helper
;;
esac