Created
June 26, 2011 18:00
-
-
Save novemberborn/1047803 to your computer and use it in GitHub Desktop.
Focus the terminal window open in the current space, or open a new one.
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
tell application "Terminal" | |
activate | |
set hasWindow to false | |
try | |
repeat with theWindow in windows | |
if (frontmost of theWindow) then | |
set hasWindow to true | |
end if | |
end repeat | |
end try | |
if (hasWindow is false) then | |
do script | |
end if | |
return hasWindow | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment