DEV Community

Cover image for How to add a logo or GIF to Windows Terminal App
Rishab Kumar
Rishab Kumar

Posted on

How to add a logo or GIF to Windows Terminal App

Hello amazing people πŸ‘‹

Hope you all are doing great. I am here with my first blog post of 2021 and it started with an astounding recommendation that I made to one of the fellow clouders @jonnychipz. I remember adding that Azure Functions GIF to my Terminal right away as Marc was showing it on one of the live streams.

So I thought, why not compose an article to show how to do it! I will begin with what Windows Terminal App is.

Windows Terminal App:

So what is Windows Terminal App, in Microsoft's own words " Windows Terminal is a new, modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL."
Here are some key features:

  • Multiple tabs
  • Beautiful text
  • Settings and configurability
  • Last but not the least, it's open source πŸ’œ

Feel free to check it out on GitHub:

GitHub logo microsoft / terminal

The new Windows Terminal and the original Windows console host, all in the same place!

terminal-logos

Welcome to the Windows Terminal, Console and Command-Line repo

This repository contains the source code for:

Related repositories include:

Installing and running Windows Terminal

Note: Windows Terminal requires Windows 10 2004 (build 19041) or later

Microsoft Store [Recommended]

Install the Windows Terminal from the Microsoft Store This allows you to always be on the latest version when we release new builds with automatic upgrades.

This is our preferred method.

Other install methods

Via GitHub

For users who are unable to install Windows Terminal from the Microsoft Store released builds can be manually downloaded from this repository's Releases page.

Download the Microsoft.WindowsTerminal_<versionNumber>.msixbundle…

Customization:

Let's dive into customizing the black & white terminal and bring some personal touch to it.

Now to add a logo or a gif to your terminal, navigate to the Settings:

image.png

The settings should open up as a JSON file:

image.png

Now to add a logo or GIF, add the backgroundImage to your 'defaults' property, this way it will appear on all of the terminals (CMD, PowerShell, WSL etc.)

"backgroundImage":"https://rishabincloud.s3.amazonaws.com/nobg.png"

image.png

image.png

But hey, this doesn't look neat, it just appears as a background! So now we will add few more properties for the backgroundImage:

"backgroundImageAlignment" : "bottomRight",
"backgroundImageOpacity":1,
"backgroundImageStretchMode": "none"
Enter fullscreen mode Exit fullscreen mode

So here is how your settings file should look like:

image.png

And now if we look at the terminal:

image.png

Looks pretty eh!

Bonus:

Here is the link so you can add the Azure Functions Mascot to your terminal:

backgroundImage":"https://raw.githubusercontent.com/marcduiker/azure-functions-university/main/img/zappy-university-192.gif

Thanks to Marc.

Also, you can customize the color scheme, I have been using WSL for a while now, here is the Ubuntu theme that I am using with it πŸ˜‰

{
            // Color Scheme: UbuntuLegit
            "background":  "#2C001E",
            "black":  "#4E9A06",
            "blue":  "#3465A4",
            "brightBlack":  "#555753",
            "brightBlue":  "#729FCF",
            "brightCyan":  "#34E2E2",
            "brightGreen":  "#8AE234",
            "brightPurple":  "#AD7FA8",
            "brightRed":  "#EF2929",
            "brightWhite":  "#EEEEEE",
            "brightYellow":  "#FCE94F",
            "cyan":  "#06989A",
            "foreground":  "#EEEEEE",
            "green":  "#300A24",
            "name":  "UbuntuLegit",
            "purple":  "#75507B",
            "red":  "#CC0000",
            "white":  "#D3D7CF",
            "yellow":  "#C4A000"
     }
Enter fullscreen mode Exit fullscreen mode

See you in the next blog and you can follow me on Twitter @rishabk7.

Top comments (1)

Collapse
 
philip profile image
Philip Kumah Jr

cool