I would like to open several terminal windows using presets like “Grass”, “Ocean” and “Basic”
Is this possible?
This is what I have so far:
tell application "Terminal"
activate
do script "ssh administrator@xxx.xx.xx.xx"
do script "top -U administrator -o cpu -s 5" in window 1
set custom title of window 1 to "XServe1"
set miniaturized of window 1 to true
end tell
tell application "Terminal"
do script "ssh administrator@xxx.xx.xx.xx"
do script "top -U administrator -o cpu -s 5" in window 1
set custom title of window 1 to "Odystar1"
set miniaturized of window 1 to true
end tell
tell application "Terminal"
do script "ssh administrator@xxx.xx.xx.xx"
do script "top -U administrator -o cpu -s 5" in window 1
set custom title of window 1 to "Odystar2"
set miniaturized of window 1 to true
end tell
–Peter–