Comment activer le bluetooth via le terminal / la ligne de commande ?
Réponse
Trop de publicités?La réponse se trouve à l'adresse suivante Superutilisateur . Le dernier message est celui que j'ai trouvé le plus efficace, sous une forme légèrement différente. La case à cocher "On" n'a pas fonctionné pour moi, mais le code suivant a fonctionné :
# 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
Vous pouvez exécuter ce script en utilisant osascript .
Mise à jour : j'ai modifié le script pour activer uniquement le Bluetooth. Il n'y a plus de basculement.