Me gustaría deshabilitar y habilitar Time Machine a voluntad a través de Quicksilver.
'nuff dijo.
Eres thang, nerds. :)
Me gustaría deshabilitar y habilitar Time Machine a voluntad a través de Quicksilver.
'nuff dijo.
Eres thang, nerds. :)
Me di cuenta de que podía copiarlo de otra secuencia de comandos que uso para detectar pantallas.
Aquí están:
Deshabilitar:
tell application "System Preferences" to activate
tell application "System Events"
tell process "System Preferences"
click menu item "Time Machine" of menu "View" of menu bar 1
tell button "OFF" of window 1 to click
end tell
end tell
tell application "System Preferences" to quit
Habilitar:
tell application "System Preferences" to activate
tell application "System Events"
tell process "System Preferences"
click menu item "Time Machine" of menu "View" of menu bar 1
tell button "ON" of window 1 to click
end tell
end tell
tell application "System Preferences" to quit
Espero que ayude a alguien más. ¡Si hay una solución mejor, soy todo oídos!
También puede usar este AppleScript para iniciar una copia de seguridad de Time Machine:
do shell script "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper &"
o usa un script de shell similar.
Creo que Time Machine se ejecuta de manera con demasiada frecuencia. En su lugar, dejo Time Machine deshabilitado y uso Awaken para ejecutar este script dos veces al día.
Estoy usando TimeMachineEditor para modificar la programación
Lea otras preguntas en las etiquetas time-machine quicksilver