├── .gitignore ├── LICENSE.txt ├── README.md ├── alfred_bluetooth_workflow.py ├── blueutil ├── icon.png ├── icons ├── bluetooth-connected.png ├── bluetooth-disconnected.png ├── failure.png └── success.png ├── info.plist ├── preview1.png ├── preview2.png ├── scripts ├── blt-off.sh ├── blt-on.sh ├── blt-restart.sh ├── blt-toggle.sh ├── blt.sh └── notify.sh ├── terminal-notifier.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── terminal-notifier │ ├── PkgInfo │ └── Resources │ ├── Terminal.icns │ └── en.lproj │ ├── Credits.rtf │ ├── InfoPlist.strings │ └── MainMenu.nib └── workflow ├── .alfredversionchecked ├── Notify.tgz ├── __init__.py ├── background.py ├── notify.py ├── update.py ├── util.py ├── version ├── workflow.py └── workflow3.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.pyc 3 | .DS_STORE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/README.md -------------------------------------------------------------------------------- /alfred_bluetooth_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/alfred_bluetooth_workflow.py -------------------------------------------------------------------------------- /blueutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/blueutil -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/icon.png -------------------------------------------------------------------------------- /icons/bluetooth-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/icons/bluetooth-connected.png -------------------------------------------------------------------------------- /icons/bluetooth-disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/icons/bluetooth-disconnected.png -------------------------------------------------------------------------------- /icons/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/icons/failure.png -------------------------------------------------------------------------------- /icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/icons/success.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/info.plist -------------------------------------------------------------------------------- /preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/preview1.png -------------------------------------------------------------------------------- /preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/preview2.png -------------------------------------------------------------------------------- /scripts/blt-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/blt-off.sh -------------------------------------------------------------------------------- /scripts/blt-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/blt-on.sh -------------------------------------------------------------------------------- /scripts/blt-restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/blt-restart.sh -------------------------------------------------------------------------------- /scripts/blt-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/blt-toggle.sh -------------------------------------------------------------------------------- /scripts/blt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/blt.sh -------------------------------------------------------------------------------- /scripts/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/scripts/notify.sh -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/Info.plist -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/MacOS/terminal-notifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/MacOS/terminal-notifier -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/Resources/Terminal.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/Resources/Terminal.icns -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /workflow/.alfredversionchecked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/Notify.tgz -------------------------------------------------------------------------------- /workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/__init__.py -------------------------------------------------------------------------------- /workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/background.py -------------------------------------------------------------------------------- /workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/notify.py -------------------------------------------------------------------------------- /workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/update.py -------------------------------------------------------------------------------- /workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/util.py -------------------------------------------------------------------------------- /workflow/version: -------------------------------------------------------------------------------- 1 | 1.40.0 -------------------------------------------------------------------------------- /workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/workflow.py -------------------------------------------------------------------------------- /workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tilmanginzel/alfred-bluetooth-workflow/HEAD/workflow/workflow3.py --------------------------------------------------------------------------------