Linux - Set default terminal size and screen position? - Super User most recent 30 from superuser.com 2010-03-20T07:19:45Z http://superuser.com/feeds/question/72176 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://superuser.com/questions/72176/linux-set-default-terminal-size-and-screen-position 4 Linux - Set default terminal size and screen position? TheCleaner http://superuser.com/users/16462 2009-11-18T15:32:26Z 2009-11-18T16:22:30Z <p>I can't find any settings inside the terminal profile to all me to set a geometry size and screen x,y coordinates so that the terminal window always opens (even after reboot) in the same location on the screen and same size.</p> <p>Is there a way to do it? I'm open to even alternate terminal programs if need be.</p> <p>(Ubuntu, gnome)</p> http://superuser.com/questions/72176/linux-set-default-terminal-size-and-screen-position/72178#72178 5 Answer by DaveParillo for Linux - Set default terminal size and screen position? DaveParillo http://superuser.com/users/10554 2009-11-18T15:41:58Z 2009-11-18T16:22:30Z <p>On the menu bar choose <strong>System -> Preferred Applications</strong>. Select the System tab. Choose Custom and type in:</p> <pre><code>gnome-terminal --geometry=120x80+50+50 </code></pre> <p>or whatever other geometry you like. To tell Ubuntu to remember your session state, so that everything you have running automatically restarts exactly how it was the last time you sere logged in (including window geometry), choose <strong>System -> Preferences -> Sessions</strong>. Check “Automatically save changes to session”.</p> <p><img src="http://www.howtogeek.com/wp-content/uploads/2006/11/WindowsLiveWriter/MakeUbuntuAutomaticallySaveChangestoYour%5F3726/autosavesession.png" alt="alt text"></p> http://superuser.com/questions/72176/linux-set-default-terminal-size-and-screen-position/72180#72180 0 Answer by John T for Linux - Set default terminal size and screen position? John T http://superuser.com/users/1931 2009-11-18T15:45:36Z 2009-11-18T15:45:36Z <p>Dave's answer will work. If you are unaware of how geometry works, check out <strong>man X</strong>.</p>