Necesito un script que abra una app si no es la más frontal y la oculte(comando+h) cuando sea la más frontal.
Por ejemplo, "Kim.app
¿cómo escribir esto en Applescript o en el shell script?
Aquí hay algo de información que puedo conseguir:
Ponte al frente:
osascript -e 'tell application "System Events" to get name of application processes whose frontmost is true and visible is true'
Abierto:
open -a 'Kim.app'
Escóndete:
osascript -e 'tell application "System Events" to set visible of process "Kim" to false'
todavía no sé cómo escribir esto