¿Se puede acceder a un script de Quicksilver para deshabilitar y habilitar Time Machine?

4

Me gustaría deshabilitar y habilitar Time Machine a voluntad a través de Quicksilver.

'nuff dijo.

Eres thang, nerds. :)

    
pregunta Tim Visher 01.04.2011 - 02:02

3 respuestas

2

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!

    
respondido por el Tim Visher 01.04.2011 - 02:16
1

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.

    
respondido por el Eric Nitardy 01.04.2011 - 02:53
0

Estoy usando TimeMachineEditor para modificar la programación

    
respondido por el Andrew 06.10.2012 - 18:26

Lea otras preguntas en las etiquetas