Everytime I open a new terminal I want it to be maximized. I don't want to use a 3rd party plugin. How can I achieve this ? (initial terminal size in gnome-terminal doesn't work properly since it isn't really maximized)
2 Answers
- Open gnome-terminal
- Make the window maximized
- run
tput colsnote down the value - run
tput linesnote down the value - Create a new profile with any preferred name of your choice
- Change the terminal size values under "Text" Tab.
- Open the desktop file from
/usr/share/applications/org.gnome.Terminal.desktopPlease note that this step 7 could be little tricky if you want to make the changes locally with out editing system files. - Edit the
Execline to match with the profile name for example:Exec=gnome-terminal --window-with-profile=PRATAP - Save the file and close.
Tested in Ubuntu 20.04
- 23,201
Maximize when launched through Applications
Copy the system desktop file
/usr/share/applications/org.gnome.Terminal.desktopto your local.local/share/applicationsfolder.Edit the
Exec=gnome-terminalline to readExec=gnome-terminal --maximize
This will maximize each new instance of the terminal when you launch it through the menu.
Maximize when launched by keyboard shortcut
When using a shortcut to launch the terminal ("Settings", "Keyboard shortcuts"), edit the command by adding the --maximize option.
Notes
1) If you want the change to affect all users, directly edit the global /usr/share/applications/org.gnome.Terminal.desktop file as administrator.
2) Instead of --maximize, you can also use the option --full-screen to have an even more immersive terminal experience.
- 97,564