Skip to content

Instantly share code, notes, and snippets.

@kparaju
Created July 8, 2019 21:24
Show Gist options
  • Save kparaju/ebddcfdfe244500dde61da1a813d27d9 to your computer and use it in GitHub Desktop.
Save kparaju/ebddcfdfe244500dde61da1a813d27d9 to your computer and use it in GitHub Desktop.
# Derived from https://www.reddit.com/r/osx/comments/5q2kbl/fix_macos_sierra_bluetooth_stutter/dduj6wa/
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Max (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Apple Initial Bitpool Min (editable)" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Max" 80
defaults write com.apple.BluetoothAudioAgent "Negotiated Bitpool Min" 80
sudo killall bluetoothaudiod
sudo killall coreaudiod
sleep 5
sudo renice -5 $(pidof bluetoothaudiod)
sudo renice -5 $(pidof coreaudiod)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment