Abra Automator , seleccione para crear un Servicio , configúrelo para que no reciba ninguna entrada en ninguna aplicación .
Desde la biblioteca, haga doble clic en Utilidades »Ejecutar AppleScript e ingrese lo siguiente en el área de texto grande:
on run {input, parameters}
tell application "System Events"
set names to name of application processes
if names contains "Safari" then
tell application process "Safari"
if visible then
set visible to false
else
# use the following to simply have it reappear:
set visible to true
# use the following to focus Safari:
tell application "Safari" to activate
end if
end tell
else
display dialog "Safari is not running"
end if
end tell
return input
end run
Guardar bajo cualquier nombre. Asigne un método abreviado de teclado en Preferencias del sistema »Teclado» Métodos abreviados de teclado »Servicios . Recuerde deshabilitar el acceso directo de Spotlight Cmd-Space
.