(* Freeware AppleScript from WhatsMyIP.org © 2021 Check out our other scripts! @ http://www.whatsmyip.org/lib/applescripts/ 'Safari New Window' opens a new Safari window in the current desktop. It won't bring existing windows to the front, or cause current desktop to change to another. Use it in your dock in place of the actual Safari application. This new version stays running so it is even faster. *) on run --new_safari_window() -- uncomment the line above if you want a new safari window to open on initial launch of this script -- I have this script open automatically at login without a new window so its ready to go end run on reopen new_safari_window() end reopen on new_safari_window() tell application "Safari" ignoring application responses make new document activate end ignoring end tell end new_safari_window