Jump to content

Search the Community

Showing results for tags 'bluetooth'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Blogs

There are no results to display.

Categories

There are no results to display.

Calendars

There are no results to display.

Forums

  • Alfred 3
  • Make the Most of Alfred
    • Discussion & Help
    • Bug Reports
    • Alfred Feature Suggestions
    • Themes
  • Alfred Workflows
    • Share your Workflows
    • Workflow Help & Questions
    • Workflow Advanced Tips & Tricks
    • Workflow Automation Tasks
  • Alfred Themes
  • Alfred Remote for iOS
    • Alfred Remote Discussion & Help
    • Remote Connection Troubleshooting

Categories

  • Articles
    • Forum Integration
    • Frontpage
  • Pages
  • Miscellaneous
    • Databases
    • Templates
    • Media

Categories

  • New Features
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Twitter


Location


Interests

Found 20 results

  1. hi. a shameless fork of Alfred AirPods Connector (https://github.com/mariuskiessling/alfred-airpods-connector). i had to change the icons, really, i had to. also i like to have different keywords for connecting and disconnecting, so here we go. Doc, screenshots, releases on GitHub: https://github.com/godbout/alfred-airpods-connector Release on Packal: http://www.packal.org/workflow/alfred-airpods-pro-connector enjoy! ☀️
  2. Usage Search your paired bluetooth devices via the btd keyword. Press ↩ to reverse a device’s state (on becomes off, and vice-versa). Toggle bluetooth as a whole via the btt keyword. ⤓ Install on the Alfred Gallery | Source
  3. Hi, I was a bit tired of handling all my bluetooth devices manually, and couldn't find any cover-all bluetooth workflows out there, so I made this one. Features: Turn on/off/toggle bluetooth Connect to device from list of paired bluetooth devices Set favorite device for quick access User friendly notifications for all actions Dependencies (see README on git repo): Blueutil Python3 Feel free to give me feedback, and report bugs if you find any. Github: https://github.com/vegardinho/alfred_bluetooth_controller Download: https://github.com/vegardinho/alfred_bluetooth_controller/releases/latest Cheers, Vegard
  4. This is a simple workflow to connect and disconnect a paired BT device. Uses basic shell, no Python. It has two commands: btc - lists all paired devices, select a device and hit ENTER to connect. btd - lists all connected devices, select a device and hit ENTER to disconnect. See instructions and sample in the github repo README file Download the workflow from here ⭐ If you like it, consider starring my repo. Thanks! 🙂
  5. Apologies if I missed the functionality I want somewhere in settings or here in the Forum, but I want to use Alfred Remote (iOS, over WiFi), to turn my Mac Bluetooth off (or on). My Mac, lid closed, over there, will connect to my WiFi headphones when I turn them on, when I want to connect to my phone instead. So I have to go open the Mac, go to prefs, turn off Bluetooth. It would be great if Alfred Remote could turn BT off/on : ) Thanks for any pointers. Cheers
  6. Decided to share my workflow which allows to connect and disconnect with already paired bluetooth devices. It relies on blueutil command line utility, which can be install via Homebrew: brew install blueutil I deliberately choose the fastest way to achieve the simple goal. Thus, workflow is fairly simple and works via shell scripts. Also, this approach allows anyone interested to modify and extend it like in no time. Workflow features two shortcuts: btc and btd, they stand for BlueTooth Connect and BlueTooth Disconnect respectively. As you type, list of devices is populated on the fly. https://drive.google.com/file/d/1AshZo4dYuQ5vEvCYJz8KTTh0xw71w4UD/view?usp=sharing I don't think I will spare significant time improving this workflow since it already fulfills my needs. But I see it as a good starting point for further development for anyone curious. Enjoy it!
  7. Bluetooth Connect Connect/Disconnect paired bluetooth device THIS IS WHAT AIRPODS OWNERS ARE WAITING FOR! LOL Usage bt : Connect/Disconnect to favorite device bt <device name or alias> : Connect/Disconnect to any paired device Command + Enter / Command + Click to mark/unmark as favorite device btset <alias> > <device name> : Set an alias for a bluetooth device btset <alias> <device name> : Set an alias for a bluetooth device (short syntax, alias must not included space) btunset <alias>: Unset an alias Features Connect/Disconnect paired bluetooth device using macOS UI (AppleScript) Set an alias for a bluetooth device Mark a bluetooth device as your favorite device for easily access Todo Load device list from system profiler Detect which one should connect or disconnect to use as text in items Turn on automatic toggle when mark as favorite and only connect to device Connect bluetooth device without using UI GitHub earthpyy/alfred-bluetooth-connect Notes For latest feature and other information please visit GitHub Repository
  8. Hey I'm trying to make an AppleScript to be run from Alfred, that should quickly set a specified speaker as audio output device if it is currently connected (in example below "My Awesome Speaker"), and otherwise don't do anything. I have gotten most of the functionality down (toggling between speaker/internal speaker), but I'm having a problem in the instance that the speaker isn't connected. When this is the case, the script has already clicked on the audioMenu, making the dropdown be there until a mouse click. I thought I could make it go away by branching with an "if else" and then if the speaker isn't connected, then just clicking the audioMenu again (because I've seen similar behaviour (with succes) for other menu bar scripts). But if I instead do this, the audio dropdown will still be staying until a click has been made, and then the script clicks the audio icon again making it doubly annoying. on alfred_script(q) set speakerName to "My Awesome Speaker" set internalSpeakers to "Internal Speakers" activate application "SystemUIServer" tell application "System Events" tell process "SystemUIServer" -- Working CONNECT Script. Goes through the following: -- Clicks on Audio Menu (OSX Top Menu Bar) -- Clicks your speaker if not connected -- Else if connected, then disconnects by clicking Internal Speakers set audioMenu to menu bar item 4 of menu bar 1 tell audioMenu click if exists menu item speakerName of menu 1 then set speakerMenuItem to menu item speakerName of menu 1 if value of attribute "AXMenuItemMarkChar" of speakerMenuItem is "✓" then click menu item internalSpeakers of menu 1 return "Disconnecting from " & speakerName & "..." else click speakerMenuItem return "Connecting to " & speakerName & "..." end if else -- Doesn't work for now. Just clicks it again after you deselect menu, making it double annoying --click audioMenu return "Doesn't look like you're connected to " & speakerName & "..." end if end tell end tell end tell end alfred_script How can I fix this, so the dropdown actually goes away if speaker is not connected?
  9. Howdy All, This is a quick one I have thrown together for my own use, I am hoping for some feedback on if anyone else would find this useful. I.e. do I keep it to myself, or productionise it properly? I put this together primarily to connect quickly and easily to my Apple Airpods and an Alfred Workflow seemed like a great way to do that. I then expanded this to do hotspots and extra headphones as well. Shoutout goes to Ian Gloude for his code on https://medium.com/@igloude/using-applescript-and-btt-to-make-the-airpods-experience-a-little-bit-better-6e78b12d33bd that makes this work. Essentially all this workflow does is do the clicks in the UI for you. I have logged a RADAR to Apple's BugReporter to request proper programmatic access to such Bluetooth functions also (for good long-term measure). You can grab the beta workflow from: https://web.tresorit.com/l#5nvV-nDObUj8ovGFXYHP5g Setup: Load up workflow Open Workflow Environment Variables Modify Workflow Environment Variables with your Bluetooth Device Names. PLEASE NOTE - read the notes alongside regarding regular and artistic apostrophes. AirPods especially seem to have artistic apostrophes in their name so you need to make sure you get the right one. Should be good to go Usage: btairpods - connect to your airpods (they must be out of their case) btheadphones - connect to another set of defined headphones btphone - connect to phone network bthotspot - connect to iDevice hotspot (note this forces a several second delay between clicking the WiFi menu and clicking the hotspot as it usually takes a second for the hotspot's to show) dcbthotspot - disconnect from iDevice hotspot
  10. Hi, Is there a way to have a workflow for connecting to Bluetooth devices? I have a Bose SoundLink Mini that I'd like my Mac to connect to, via Alfred. That would be much easier than via the Bluetooth menu. Thanks!
  11. Hi, I read this blog post with some interest (http://blog.alfredapp.com/2015/02/25/connecting-your-remote-using-bluetooth/) as I've not once been able to get this to work. I'm running Yosemite and iOS8.2 and from everything else I've read Apple has pretty much nerfed the ability for the two devices to connect as you would normally expect by bluetooth. It would seem that the new bluetooth 4.0LE stuff means it connects as needed and so they didn't see the need for allowing bluetooth pairing of the phone and Mac. So my question is - does anyone out there have this working on Yosemite? I'd really love to make this work as when I'm at work the wireless network here segregates all devices on it, so my phone can't see the MBP at all. What would be really cool, as a feature request, would be for the remote to support the bluetooth 4.0LE stuff and actually just work when it's in range of the MBP, without any pairing, etc. It may also be worth revising that blog article if it doesn't apply to Yosemite
  12. Thought it was about time i gave back to this amazing community. Very simple workflow to turn bluetooth on/off. Using Blued library to simplify scripting. Simply type : bluetooth on or bluetooth off can be downloaded here
  13. Instead of forcing an iPhone to be connected to the same wifi network to have Alfred Remote functionality, it would be nice if it could instead connect by bluetooth pairing. Has this feature been requested before?
  14. I'm sure there are a few of these out there already, but in the essence of personal growth, I wrote my own Wi-Fi and Bluetooth toggling workflows. Thought I would share with the rest of the world, as I hope someone else finds my stuff useful. Apologies ahead of time, I currently am not taking any requests for enhancements, unless I will actually be using them myself. Having said that, please feel free to fork and make it your own. Toggle Wi-Fi.alfredworkflow | GitHub Page Toggle Bluetooth.alfredworkflow (requires `blueutil` to work properly. To install, run `brew install blueutil`) | GitHub Page
  15. Here's a little workflow for toggling bluetooth and wifi. Basic usage: bt - toggle bluetooth, see status bluetooth - toggle bluetooth wifi - toggle wifi Download: https://www.dropbox.com/s/xcka1l6pxt8ibsn/BT%20%26%20Wifi%20Toggle.alfredworkflow (as of 08/03/2014) Important update: The latest version of this workflow uses a new (unofficial) version of blueutil which is a copy of the original source code, only rewritten and compiled (by me) for the latest OS X, that is for the OS X 10.10 beta, too. I am a little worried that by having it compiled for the beta, it won't work for 10.9 and lower but I hope there won't be a problem. If there is, please tell me and I will release a version with the original blueutil. Using: custom version of blueutil (http://www.frederikseiffert.de/blueutil/)
  16. Turns bluetooth on and off using the keyword tbt. http://www.packal.org/workflow/toggle-bluetooth Paul
  17. Is there anybody who created a workflow that connects to registered bluetooth devices?
  18. A python script toggle for turning on/off bluetooth and show the state in NotificationCenter. Pyton script author: seapy (http://seapy.com) Download: http://dl.dropbox.com/u/16389684/Bluetooth%20Toggle.alfredworkflow
  19. Hey everybody, love to see all those workflows emerge and being able to use them. Now it's time to share my own very first workflow This workflow toggles Type2Phone and Bluetooth By typing ‘tnb‘ within Alfred an Applescript is started to either turn bluetooth on and launch Type2Phone or quit Type2Phone and switch bluetooth off depending if Bluetooth is active right now or not. Download the Workflow This Workflow requires: #1 the Software Type2Phone, which lets you use your Macs Keyboard to type on your iPhone (App Store Link). #2 blueutil. It's a commandline-tool to turn Bluetooth on and off. I tested it under OS X 10.8.4. Notice: I noticed the workflow doesn't bring Typ2Phone to the foreground. Additionally Type2phone does not start up reliably. Any tips?
  20. Requires the installation of blueutil, available via Mac brew, and assumes a symlink or other link to blueutil available at: /usr/local/bin/blueutil If you have brew installed, use the command: brew install blueutil If not, install blueutil on your own, or install brew first. http://midknightgallery.com/storage/workflows/Toggle_Bluetooth.alfredworkflow Keyword for bringing up the toggle is "bluetooth"
×
×
  • Create New...