31 lines
484 B
Text
31 lines
484 B
Text
#
|
|
# 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
|
|
;;
|
|
esac
|