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