Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I start the Windows Terminal maximized by default?

Is there a way to force the Windows Terminal to start maximized (not full-screen - I still want my taskbar to be there) by default?

like image 904
tkit Avatar asked Feb 25 '20 18:02

tkit


People also ask

How do I make Windows Terminal full screen?

Open the Command Prompt and press Alt + ↵ Enter to make it full-screen. Press the keys again to switch it back.

How do I make Windows Terminal default?

Launch the Windows Terminal by right-clicking on the Start button. From the drop-down option near the + symbol, select the Settings menu. From the Settings tab of Windows Terminal, select the Default Terminal application as Terminal.

How do I change Windows Terminal settings?

You can open the terminal settings through the dropdown menu or by pressing Ctrl + , on your keyboard. From v1. 7, the JSON file that contains all the terminal settings is no longer open by default as was the case in earlier releases.

How do you change focus mode in Windows Terminal?

You can also use the command palette to toggle on/off the focus mode. When you are in the focus mode, press Ctrl + Shift + P shortcut keys to access the command palette. The interactive command palette feature will pop up with a list of actions that you can run inside Windows Terminal.


2 Answers

In addition to what @Petar said, since preview v.1.1.1671.0, --fullscreen and --maximized are two optional switches for the wt execution alias if you're automating something and trying to run the terminal maximized only sometimes.

So, these two ways of launching the terminal from the command line are now an option:

wt --maximized

wt --fullscreen
like image 156
tkit Avatar answered Oct 23 '22 05:10

tkit


If you mean the new Windows terminal (preview), that is possible with adding:

"launchMode": "maximized"

to the "globals" section

Source: Windows Terminal Preview 1910 Release

like image 28
Petar Avatar answered Oct 23 '22 07:10

Petar