29 lines
428 B
Plaintext
29 lines
428 B
Plaintext
|
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
|