Attiva il bluetooth tramite terminale / riga di comando

2

Come posso attivare il bluetooth tramite il terminale / la riga di comando?

    
posta topskip 05.01.2012 - 10:13
fonte

1 risposta

1

C'è una risposta su Superuser . L'ultimo post contiene ciò che ho trovato che funziona meglio, in una forma leggermente diversa. La "casella di controllo" su "" non ha funzionato per me, ma il codice seguente ha fatto:

# This is only necessary, if AppleScripts are not yet allowed to change checkboxes
tell application "System Events" to set UI elements enabled to true
# Now change the bluetooth status
tell application "System Preferences"
    set current pane to pane id "com.apple.preferences.bluetooth"
    tell application "System Events"
        tell process "System Preferences"
            # Enabled is checkbox number 2
            if value of checkbox 2 of window "Bluetooth" is 0 then
                click checkbox 2 of window "Bluetooth"
            end if
        end tell
    end tell
    quit
end tell

Puoi eseguire questo script usando osascript .

Aggiornamento: ora ho modificato lo script per abilitare semplicemente il Bluetooth. Non commutare più.

    
risposta data 05.01.2012 - 14:08
fonte

Leggi altre domande sui tag