├── .gitignore ├── LICENSE.md ├── README.md ├── img ├── alfred_bluetooth_long.gif ├── bt_icon_blue.png ├── bt_icon_blue_favorite.png ├── bt_icon_green.png ├── bt_icon_green_favorite.png ├── icon.png ├── open-in-finder.png ├── open-in-terminal.png ├── open-manually.png ├── screenshot_bt.png ├── screenshot_btd.png └── security_bluetooth.png ├── info.plist ├── notificator └── scripts ├── commands.zsh ├── connect.py ├── connect_favorite.py ├── get_display_name.py ├── get_favorite.py ├── large_type.zsh ├── notify.py ├── pair.py ├── remove_favorite.zsh ├── return_device_json.py ├── script_output.py ├── set_favorite.zsh ├── toggle.zsh └── unpair.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/README.md -------------------------------------------------------------------------------- /img/alfred_bluetooth_long.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/alfred_bluetooth_long.gif -------------------------------------------------------------------------------- /img/bt_icon_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/bt_icon_blue.png -------------------------------------------------------------------------------- /img/bt_icon_blue_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/bt_icon_blue_favorite.png -------------------------------------------------------------------------------- /img/bt_icon_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/bt_icon_green.png -------------------------------------------------------------------------------- /img/bt_icon_green_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/bt_icon_green_favorite.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/open-in-finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/open-in-finder.png -------------------------------------------------------------------------------- /img/open-in-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/open-in-terminal.png -------------------------------------------------------------------------------- /img/open-manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/open-manually.png -------------------------------------------------------------------------------- /img/screenshot_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/screenshot_bt.png -------------------------------------------------------------------------------- /img/screenshot_btd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/screenshot_btd.png -------------------------------------------------------------------------------- /img/security_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/img/security_bluetooth.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/info.plist -------------------------------------------------------------------------------- /notificator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/notificator -------------------------------------------------------------------------------- /scripts/commands.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/commands.zsh -------------------------------------------------------------------------------- /scripts/connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/connect.py -------------------------------------------------------------------------------- /scripts/connect_favorite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/connect_favorite.py -------------------------------------------------------------------------------- /scripts/get_display_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/get_display_name.py -------------------------------------------------------------------------------- /scripts/get_favorite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/get_favorite.py -------------------------------------------------------------------------------- /scripts/large_type.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/large_type.zsh -------------------------------------------------------------------------------- /scripts/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/notify.py -------------------------------------------------------------------------------- /scripts/pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/pair.py -------------------------------------------------------------------------------- /scripts/remove_favorite.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/remove_favorite.zsh -------------------------------------------------------------------------------- /scripts/return_device_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/return_device_json.py -------------------------------------------------------------------------------- /scripts/script_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/script_output.py -------------------------------------------------------------------------------- /scripts/set_favorite.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/set_favorite.zsh -------------------------------------------------------------------------------- /scripts/toggle.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/toggle.zsh -------------------------------------------------------------------------------- /scripts/unpair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vegardinho/alfred_bluetooth_controller/HEAD/scripts/unpair.py --------------------------------------------------------------------------------