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


Click here to return to the 'Make it easier to reset Visor's window height' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Make it easier to reset Visor's window height
Authored by: dylanryan on Sep 24, '07 08:37:52PM
Adding the following to your .profile (or .bashrc or whatever) takes all the guesswork out:

trap "defaults write com.apple.Terminal VisorTerminal -dict-add Rows 20" EXIT

As far as I can tell, that will automatically reset its size when you quit (Cmd-Q / Terminal>Quit Terminal), logout, or exit.

I originally tried the defaults write ... in a .bash_logout, but that didn't seem to get called when quitting via Command-Q (or Terminal>Quit Temrminal), but this does.

[ Reply to This | # ]