Add a hook to enable pulseaudio at boot for systems that have it
parent
c6e35dfc60
commit
a35d477bc2
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
$FILE="/etc/default/pulseaudio"
|
||||||
|
set -e
|
||||||
|
if [ -f $FILE ];
|
||||||
|
then
|
||||||
|
echo "Setting PULSEAUDIO_SYSTEM_START=1"
|
||||||
|
/bin/sed -i 's/PULSEAUDIO_SYSTEM_START=0/PULSEAUDIO_SYSTEM_START=1/g' /etc/default/pulseaudio
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in New Issue