Encienda el bluetooth a través de la línea de comandos / terminal

2

¿Cómo puedo activar el bluetooth a través del terminal / la línea de comandos?

    
pregunta topskip 05.01.2012 - 10:13

1 respuesta

1

Hay una respuesta en Superusuario . El último post allí es lo que encontré que funciona mejor, en una forma ligeramente diferente. La "casilla de verificación" En "no funcionó para mí, pero el siguiente código sí:

# 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

Puede ejecutar este script utilizando osascript .

Actualización: ahora cambié el script para habilitar Bluetooth. Ya no hay que alternar.

    
respondido por el Arne 05.01.2012 - 14:08

Lea otras preguntas en las etiquetas