Applescript: ¿Ayuda con la inactividad y la ocultación del buscador?

3

Estoy tratando de obtener mi script que funciona para hacer 2 cosas: ejecutarlo en segundo plano cada 60 segundos y desaparecer del buscador y el dock.

Original:

tell application "System Events"
    set process_list to the name of every process
    if "QuickLookUIService" is in process_list then
        set ThePID to unix id of process "QuickLookUIService"
        do shell script "kill -KILL " & ThePID

    end if

end tell

Cuando intento el siguiente código para inactivo, el script deja de funcionar.

on idle

    tell application "System Events"
        set process_list to the name of every process
        if "QuickLookUIService" is in process_list then
            set ThePID to unix id of process "QuickLookUIService"
            do shell script "kill -KILL " & ThePID

        end if

    end tell
return 60
end idle

Y cuando agrego este código para ocultarlo del buscador, no sucede nada. Ideas?

tell application "Finder"

    set visible of process "killQuickLook" to false

end tell
    
pregunta Eric McClellan 10.12.2018 - 17:27

1 respuesta

1

Gracias a @CJK por la solución que terminé usando ... creando un agente de lanzamiento: enlace

    
respondido por el Eric McClellan 11.12.2018 - 08:18

Lea otras preguntas en las etiquetas