├── .gitignore ├── .travis.yml ├── README.md ├── Spotify Bluetooth Headset Listener.xcodeproj ├── .gitignore ├── project.pbxproj └── project.xcworkspace │ ├── .gitignore │ └── contents.xcworkspacedata ├── Spotify Bluetooth Headset Listener ├── Base.lproj │ └── MainMenu.xib ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon-1.png │ │ ├── AppIcon-2.png │ │ ├── AppIcon-3.png │ │ ├── AppIcon-4.png │ │ ├── AppIcon-5.png │ │ ├── AppIcon-6.png │ │ ├── AppIcon-7.png │ │ ├── AppIcon-8.png │ │ ├── AppIcon-9.png │ │ ├── AppIcon.png │ │ └── Contents.json │ └── MenuItemTemplate.imageset │ │ ├── Contents.json │ │ ├── MenuItemTemplate-1.png │ │ ├── MenuItemTemplate-2.png │ │ └── MenuItemTemplate.png ├── KDMAppDelegate.h ├── KDMAppDelegate.m ├── MediaKey.h ├── MediaKey.m ├── Spotify Bluetooth Headset Listener-Info.plist ├── Spotify Bluetooth Headset Listener-Prefix.pch ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m └── Spotify Bluetooth Headset ListenerTests ├── Spotify Bluetooth Headset ListenerTests-Info.plist ├── Spotify_Bluetooth_Headset_ListenerTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/README.md -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener.xcodeproj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener.xcodeproj/.gitignore -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener.xcodeproj/project.xcworkspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener.xcodeproj/project.xcworkspace/.gitignore -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-1.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-2.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-3.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-4.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-5.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-6.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-7.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-8.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon-9.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate-1.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate-2.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Images.xcassets/MenuItemTemplate.imageset/MenuItemTemplate.png -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/KDMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/KDMAppDelegate.h -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/KDMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/KDMAppDelegate.m -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/MediaKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/MediaKey.h -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/MediaKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/MediaKey.m -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Spotify Bluetooth Headset Listener-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Spotify Bluetooth Headset Listener-Info.plist -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/Spotify Bluetooth Headset Listener-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/Spotify Bluetooth Headset Listener-Prefix.pch -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Spotify Bluetooth Headset Listener/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset Listener/main.m -------------------------------------------------------------------------------- /Spotify Bluetooth Headset ListenerTests/Spotify Bluetooth Headset ListenerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset ListenerTests/Spotify Bluetooth Headset ListenerTests-Info.plist -------------------------------------------------------------------------------- /Spotify Bluetooth Headset ListenerTests/Spotify_Bluetooth_Headset_ListenerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jguice/mac-bt-headset-fix/HEAD/Spotify Bluetooth Headset ListenerTests/Spotify_Bluetooth_Headset_ListenerTests.m -------------------------------------------------------------------------------- /Spotify Bluetooth Headset ListenerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------