Skip to content

Instantly share code, notes, and snippets.

@dtelaroli
Last active November 12, 2020 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dtelaroli/f08e715d6b7930dc101823472017dfb1 to your computer and use it in GitHub Desktop.
Save dtelaroli/f08e715d6b7930dc101823472017dfb1 to your computer and use it in GitHub Desktop.
mac osx enable and disable aac aptx codecs
#read
sudo defaults read bluetoothaudiod
# disable
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool false
sudo defaults write bluetoothaudiod "Enable AptX code" -bool false
# restart
# enable
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true
sudo defaults write bluetoothaudiod "Enable AptX code" -bool true
# restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment