¿Cómo puedo activar el bluetooth a través del terminal / la línea de comandos?
¿Cómo puedo activar el bluetooth a través del terminal / la línea de comandos?
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.