Skip to content

Small mac application that fixes broken bluetooth headset control by listening for events and sending them directly to apps

Notifications You must be signed in to change notification settings

philmillshub/mac-bt-headset-fix

 
 

Repository files navigation

mac-bt-headset-fix build status

Small mac application that fixes broken bluetooth headset control by listening for headset keypress events and re-triggers them as media key presses (as if one pushed the buttons on the keyboard).

The app should work with any player/etc. that responds to media keys, but allow you to use your bluetooth headset controls instead :-).

Download the latest stable version.

Usage

Download the above file and unzip it. Double-click to run the app (you may need to generally allow unsigned apps or authorize this one in particular).

Try connecting your bluetooth device and pressing the play/pause/etc. buttons (press and hold too). Your media player should respond to them just as if you'd pressed the relevant keyboard media key. :)

If you're using an in-browser player you might need an extension to make the app respond to media keys (which should also make it work with your headset). For chrome try streamkeys.

What it does

On execution the application will background itself and listen for bluetooth headset events. You'll see a menu bar icon that can be used to quit the app (or hide the menu icon). Note that the menu icon will remain visible for 30 seconds before hiding to allow changing the hide option or quitting, etc.

The app will intercept common bluetooth headset key presses and re-fire them as media key presses. Currently the following key presses are supported:

  • play/pause
  • next
  • prev
  • fast-forward
  • rewind

The mapping on headsets seems to be a bit inconsistent. If pressing next/prev doesn't work, try a press and hold. :)

On launch it will also attempt to unload the built-in Remote Control Daemon (rcd) which seems to be responsible for starting iTunes when a play event is first received.

Note that this will probably cause any remote controls you use to stop working.

If you find iTunes still loads you might try this play-button-itunes-patch.

Quitting the Application when menu bar icon is hidden

If you've hidden the menu bar item then you'll need to open the terminal and kill the process. Try this:

  • open the Terminal application (search spotlight or look in /Applications/Utilities)
  • ps ux | grep Bluetooth

Look for a line that references /Applications/Spotify Bluetooth Headset Listener.app and starts with your username.

The number right after your username is the process id.

To quit (kill) the app type: kill [pid] where [pid] is the number from the previous step.

Then you can run the ps command again to verify it's no longer running.

Note on quit the application will try to reload the Remote Control Daemon to restore whatever functionality it provides

Beta Version

If you're feeling lucky try the beta version.

Changes

  • current beta is identical to the release version

Origin

The original version of this app was posted on this spotify community thread. It controlled the spotify mac player directly via the scripting bridge (objC -> applescript).

I did not write it, but was granted permission to post it to github for sharing and encouraging enhancements. It was published here under the MIT License as requested by the author. :)

This current version also retains that same license.

Alternatives

Donations

Feel free to donate any amount If you'd like to contribute to further development of this little app or just say "Thanks!"

About

Small mac application that fixes broken bluetooth headset control by listening for events and sending them directly to apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 96.7%
  • Shell 3.3%