open several terminals windows with different setting

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–

Yes, it is! Try code as follows:


on run
	tell application "Terminal"
		activate
		set settingssetnames to name of every settings set
		repeat with settingssetname in settingssetnames
			do script "ls -a"
			set current settings of tab 1 of window 1 to settings set settingssetname
			delay 0.5
		end repeat
	end tell
end run

Watch the rainbow :lol: