Customize your terminal using oh-my-posh theme

shahinalam02

Shahin Alam

Posted on May 1, 2021

Customize your terminal using oh-my-posh theme

Image description

Hey developers,

Today I will show you how you can customize your windows terminal with your test like this. Or you can add your own theme. Trust me, and it’s super easy anyone can do. You need to know simple codding knowledge, and you are good to go. If you face any problem, write it down in the comment section. I will try to solve your problem.

In this tutorial, I am trying to make it as simple as I can. I will explain every detail you need to know when you are making your terminal theme.

Without wasting your valuable time, let’s jump to the tutorial.

Follow those simple steps.

               Set up Powerline in PowerShell
Enter fullscreen mode Exit fullscreen mode

Step 1: Install the windows terminal by using this link.
https://www.microsoft.com/en-us/p/windows-terminal/9n0dx20hk701?activetab=pivot:overviewtab

Step 2: Install a Powerline font
https://www.nerdfonts.com/font-downloads
Using this link, you will find the font named FiraMono Nerd Font. Download and install it on your system.

Step 3: Now, you need to install Install Git for Windows by using this link
https://git-scm.com/downloads

Step 4: Let’s set up Git
Open windows terminal and type (CTRL +, ) to open setting
You'll want to append one of the profiles options below (depending on what version of git you have installed) to the "list": portion of the settings.json file
image

Profile options

Uncomment correct paths for command line and icon if you are using:

*Git for Windows in %PROGRAMFILES%
*Git for Windows in %USERPROFILE%
*If you're using scoop

image
image

Or you can use my setting.json file just copy and paste
https://git.io/J3nNy.

Alt Text

If you like the ( Learn with Sumit) terminal, then paste this code without making any changes.

Step 5: install oh my posh on windows terminal

https://ohmyposh.dev/
Using your windows terminal, install Posh-Git and Oh-My-Posh:


 posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser

Enter fullscreen mode Exit fullscreen mode

If you are using PowerShell Core, install PSReadline:


 -Name PSReadLine -Scope CurrentUser -Force -SkipPublisherCheck

             Customize your PowerShell prompt

Using your windows terminal, import module Posh-Git and Oh-My-Posh:


 posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme hotstick.minimal

Now paste one more command


 $profile

It will show you this ps1 file path.

"C:\Users\Shahi\OneDrive\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1"

Then paste another command


 $profile

Enter fullscreen mode Exit fullscreen mode

image

It will open a notepad in this empty space. Paste the code below and save it
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme hotstick.minimal

Step 6: setup windows terminal setting.json

Open windows terminal and type (CTRL +, ) to open setting
Change those setting
image

Step 7: customize windows terminal Theme JSON.

In this step, you need to copy-paste my customized theme.
Open terminal and run
Get-PoshThemes

Now you can see the list of all themes of oh-my-posh. We pick one theme named hotstick.minimal.omp.json

Paste the command to the terminal.
Set-PoshPrompt -Theme hotstick.minimal

Now let’s customize hotstick.minmal

https://git.io/J3cIq

Check the link and download the hotstick.minimal.omp.json
file:

Replace the hotstick.minimal json file on this file path

"C:\Program Files\WindowsPowerShell\Modules\oh-my-posh\3.134.0\themes\hotstick.minimal.omp.json"

https://www.buymeacoffee.com/shahinalamx

💖 💪 🙅 🚩
shahinalam02
Shahin Alam

Posted on May 1, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related