Unfortunately not at the moment, it would require a new plugin.

I've been meaning to add a script to the wiki which allows you to turn 
bluetooth on/off, but haven't got round to it yet. Here it is.

It requires you to install blueutil (and Growl), but once they're installed, 
just run the script to toggle Bluetooth on/off

http://www.frederikseiffert.de/blueutil/

Script:

property blueutilPath : "/usr/local/bin/blueutil"


-- Check the current bluetooth status and turn it on if necessary.
if execBlueutil("") is "0" then
        execBlueutil("1")
        tell application "Growl"
                set the allNotificationsList to {"Bluetooth Setting"}
                set the enabledNotificationsList to {"Bluetooth Setting"}
                notify with name "Bluetooth Setting" title "Bluetooth On" 
description "Bluetooth has been enabled." application name "AppleScript - 
Bluetooth" icon of file (path to me)
        end tell
else
        -- Set the bluetooth status to what it was before.
        execBlueutil("0")
        tell application "Growl"
                set the allNotificationsList to {"Bluetooth Setting"}
                set the enabledNotificationsList to {"Bluetooth Setting"}
                notify with name "Bluetooth Setting" title "Bluetooth Off" 
description "Bluetooth has been disabled." application name "AppleScript - 
Bluetooth" icon of file (path to me)
        end tell
end if


on execBlueutil(command)
        set res to do shell script blueutilPath & " power " & command
        if res contains "Error" then
                display dialog res
                quit
        end if
        return res
end execBlueutil




On 3 Gorff 2013, at 09:17, Afshin <[email protected]> wrote:

> Hi all, 
> 
> I'm wondering if there's a way to connect to a bluetooth device, i.e. iPhone, 
> via QS?  
> 
> Thanks! 
> -Afshin
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Quicksilver" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/blacktree-quicksilver.
> For more options, visit https://groups.google.com/groups/opt_out.
>  
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/blacktree-quicksilver.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to