
Untitled
By: a guest on
May 28th, 2012 | syntax:
None | size: 0.53 KB | hits: 13 | expires: Never
Applescript to open specific Terminal Style Windows
set a to {}
tell application "Terminal"
repeat with i from 1 to count settings set
set temp to {settings set i's name, settings set i's id}
set end of a to temp
end repeat
a
end tell
tell application "Terminal"
set a to do script "" -- creates new window
set a's current settings to (settings set id <one of the id #>)
end tell
tell application "Terminal"
set win to do script
set win's current settings to settings set "Basic"
end tell