Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Hide Terminal's window during launch at login' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Hide Terminal's window during launch at login
Authored by: trosberg on May 25, '05 02:52:21PM
I suppose the same functionality is accomplished with a saved AppleScript as a Login item:
tell application "Terminal"
	launch
	set w to first window
	set visible of w to 0
end tell


[ Reply to This | # ]