Skip to content

Commit

Permalink
fix 4 for bluetooth out again
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdubois committed Jun 26, 2021
1 parent f145a17 commit 3f12121
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ echo "Fix 3"
echo "#################"
[ -f /etc/modprobe.d/bluetooth-clear.conf ] && echo "Bluetooth-clear already created" || echo 'options ath9k btcoex_enable = 1' | sudo tee /etc/modprobe.d/bluetooth-clear.conf

echo "#################"
echo "Fix 4"
echo "#################"
if grep --quiet "Disable=Socket" /etc/bluetooth/main.conf; then
echo "Disable=Socket is already added"
else
echo '
Disable=Socket' | sudo tee --append /etc/bluetooth/main.conf
fi
# not necessary any more on 26/06/2021
# echo "#################"
# echo "Fix 4"
# echo "#################"
# if grep --quiet "Disable=Socket" /etc/bluetooth/main.conf; then
# echo "Disable=Socket is already added"
# else
# echo '
# Disable=Socket' | sudo tee --append /etc/bluetooth/main.conf
# fi

echo "################################################################"
echo "######### reboot to let the settings kick in ################"
Expand Down

0 comments on commit 3f12121

Please sign in to comment.