Skip to main content

Setting up the all new WINDOWS TERMINAL!!!

Windows Terminal

Microsoft announced the release of the new windows terminal back in May this year with an eye-catching video. And it’s opensource.

WARNING!

It’s still in preview.

Prerequisites

Installation

There are three methods of installing the Terminal.

  1. From Microsoft Store (with automatic updates)

    Go over to Microsoft Store and search for Microsoft Terminal.

  2. Manual Installation

    Head over to the releases page on GitHub repository, grab the installer and install it as any program.

  3. Chocolatey (Unofficial)

    You can also install using chocolatey.

    Just open Command Prompt or PowerShell and

    Enter the following command to install

    
    choco install microsoft-windows-terminal
    
    

    Use this for upgrading to new version

    
    choco upgrade microsoft-windows-terminal
    
    

Setup

After installation, you will see the new terminal and it opens a powershell window.

First terminal window

Click on the dropdown button and go to settings or Ctrl + , for those who prefer shortcuts. You will be asked to choose a text editor if there is no default for json files. There is no GUI for settings yet. So you have to use a text editor for now.

I personally use VSCode you can use whatever you want.

Settings file in VSCode

I’ve already made a few changes.

You can use images for background or solid colours by changing the value of background to an image location or Hex color codes. You can have different backgrounds for different profiles (like for cmd, powershell, wsl…).

You can also set icons for different profiles. For example, all distributions you might have installed in WSL show the same image. You can add a different icon for different distros.

Windows Terminal Ubuntu Profile with Icon

Settings file for Ubuntu

You can change fonts and it also supports font ligatures. You can create many profiles for the same Command Prompt or PowerShell.

To get more idea hold " alt " while clicking settings button. You will see default settings with their values. You can use those settings and change their values in profiles.json file.

Comments

Post a Comment

Popular posts from this blog

Getting Started with Visual Studio Code

Everybody who writes, let it be a story, a piece of code or maybe to take a few notes or something, you need a text editor. This is where VSCode comes in. It can do all a simple note-taking app can do and much more. With extensions you can extend the functionality of the editor. For example, with Better Fountain extension you can write and format screenplays. In this article, you’ll learn about installing and basic setup and an overview of some of its features and extensions. And it is available for all platforms Windows, MacOS and Linux. It is based on the microsoft’s own opensource Code - OSS project which is released under MIT License. VSCode is released under Microsoft product license . Installation You can download the latest version of Visual Studio Code from here . For Debian based distributions there is a .deb package available, and .rpm package for RHEL, CentOS , fedora, OpenSUSE etc. For Arch-based distributions, there is a community version Code - OSS (a...