ओपन ऑटोमेटर , एक सेवा बनाने के लिए चयन करें , इसे कॉन्फ़िगर करने के लिए किसी भी आवेदन में कोई इनपुट नहीं मिलता है ।
लाइब्रेरी से, यूटिलिटीज पर डबल-क्लिक करें »AppleScript रन करें और निम्नलिखित को बड़े टेक्स्ट क्षेत्र में दर्ज करें:
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
किसी भी नाम से सेव करें। सिस्टम वरीयताएँ »कीबोर्ड» कीबोर्ड शॉर्टकट »सेवाओं में कीबोर्ड शॉर्टकट असाइन करें । स्पॉटलाइट शॉर्टकट को अक्षम करना याद रखें Cmd-Space
।