Skip to content

Instantly share code, notes, and snippets.

@lifecube
Forked from bianster/Bluetooth Control
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save lifecube/853aeb372e735b42999d to your computer and use it in GitHub Desktop.

Select an option

Save lifecube/853aeb372e735b42999d to your computer and use it in GitHub Desktop.
function bt-ctl(){
case "$1" in
off)
sudo launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist
sudo kextunload -b com.apple.iokit.IOBluetoothSerialManager
sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
;;
on)
sudo launchctl load /System/Library/LaunchDaemons/com.apple.blued.plist
sudo kextload -b com.apple.iokit.IOBluetoothSerialManager
sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment