-
-
Save tcmacdonald/acb0b3c6a5d45688e167 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- open currently active Chrome tab with Safari | |
-- forked from https://gist.github.com/3151932 and https://gist.github.com/3153606 | |
-- | |
property theURL : "" | |
tell application "Google Chrome" | |
set theURL to URL of active tab of window 0 | |
end tell | |
if appIsRunning("Safari") then | |
tell application "Safari" | |
tell front window | |
open location theURL | |
end tell | |
activate | |
end tell | |
else | |
tell application "Safari" | |
-- Safari not running, so start it | |
do shell script "open -a \"Safari\"" | |
tell front window | |
open location theURL | |
end tell | |
activate | |
end tell | |
end if | |
on appIsRunning(appName) | |
tell application "System Events" to (name of processes) contains appName | |
end appIsRunning |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment