Buka Automator , pilih untuk membuat Layanan , konfigurasikan agar tidak menerima input dalam aplikasi apa pun .
Dari perpustakaan, klik dua kali Utilitas »Jalankan AppleScript dan masukkan berikut ini ke dalam area teks besar:
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
Simpan di bawah nama apa pun. Tetapkan pintasan keyboard di Preferensi Sistem »Keyboard» Pintasan Keyboard »Layanan . Ingatlah untuk menonaktifkan pintasan Spotlight Cmd-Space
.