Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 16, 2021 11:11 am GMT

Windows Terminal - Get a default config

If you are using Windows Terminal and you want to have a default config open in a click, this is for you!

Windows Terminal exposes a command line with multiple parameters which allows you to do a lot of things easily!

Open Windows Terminal

Use the following command and a new window of Windows Terminal will be open.

wt

Then you can add multiple options to open what you want.

Open 2 tabs

wt new-tab `; new-tab

Open a tab with a title

wt --title "K8s"

Open in fullscreen

wt -F

Open with focus

wt -f

...

And so on. Also, you can compile all that options to generate a personal quick launch terminal with multiple tabs, specific names...

For more information and options : https://docs.microsoft.com/en-us/windows/terminal/command-line-arguments?tabs=windows

To have access to that terminal in one click, you have multiple options:

  • Create a bash file to execute that script
  • Create a shortcut where you call PowerShell with the command in parameter.

I hope it will help you!

Don't hesitate to give some feedback to help me to improve my writing skills. Thanks!


Original Link: https://dev.to/adaendra/windows-terminal-get-a-default-config-3g1

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To