You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|
|
|