Make Your Windows 11 Terminal Look Modern & Beautiful!

This guide shows how to customize your Windows 11 Terminal to look modern, stylish, and beautiful. It's ideal for Windows 11 users and those new to Windows!

Introduction

Do you want to make your Windows 11 Terminal look modern, professional, and stylish?

In this guide, you'll learn how to transform the default Windows Terminal into a beautiful and productive development environment using Oh My Posh, Nerd Fonts, custom color schemes, transparency effects, and Fastfetch.

If you prefer watching instead of reading, here's the full video guide: Watch the video on YouTube

Requirements

Step 1 - Installing Windows Terminal

Before customizing your terminal,

  1. Go to Microsoft Store
  2. Search for "Windows Terminal"
  3. Select the official Microsoft application
  4. Click Install
Tip

Alternatively, you can go to this link: https://apps.microsoft.com/detail/9n0dx20hk701?hl=en-US And install the Terminal from there

Make sure the WinGet CLI is also installed.

Step 2 - Installing Oh My Posh

Open the Windows Terminal and type:

winget install JanDeDobbeleer.OhMyPosh --source winget
Tip

Alternatively:

  1. Go to the Official GitHub repo of Oh My Posh: https://github.com/JanDeDobbeleer/oh-my-posh
  2. Open the Releases section
  3. Download the installer: install-x64.msi
  4. Run the Oh My Posh installer (install-x64.msi) to install Oh My Posh

Once it's installed, switch to the PowerShell and type:

oh-my-posh init pwsh | Invoke-Expression

To test the command and verify if Oh My Posh is installed.

PowerShell with Oh My Posh enabled PowerShell after enabling Oh My Posh.

Important

If you use

oh-my-posh init pwsh --eval | Invoke-Expression

It might work as a fallback option, but the --eval option makes the initialization slower.

Note

Make sure to open PowerShell as Administrator and type:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine

To run local scripts if the Oh My Posh initialization command returns error

Tip

Use:

winget upgrade JanDeDobbeleer.OhMyPosh --source winget

To upgrade Oh My Posh

Once Oh My Posh works, up next is configuring Oh My Posh inside the PowerShell.

Step 3 - Configuring Oh My Posh in PowerShell

  1. Create a new profile:
    New-Item -Path $PROFILE -Type File -Force
  2. Open the Profile with notepad:
    notepad $PROFILE
  3. Add the following command inside the profile:
    oh-my-posh init pwsh | Invoke-Expression
  4. Save the file, close Notepad, and refresh the profile by typing:
    . $PROFILE

PowerShell profile configured with Oh My Posh Oh My Posh loaded automatically from the PowerShell profile.

Once it's initialized every time you start PowerShell, let's install Nerd fonts!

Step 4 - Installing Nerd Fonts

  1. Go to the official Nerd Fonts download page: https://www.nerdfonts.com/font-downloads
  2. Choose a font such as Fira Code Nerd Font or Geist Mono Nerd Font, then download it.
  3. Once you've downloaded the Nerd Font, extract the downloaded Nerd Font archive.
  4. Select all fonts inside the extracted folder.
  5. Copy them and paste into C:\Windows\Fonts.
  6. Open Terminal, Go to the Dropdown menu → Settings → Defaults → Appearance
  7. Change the Font Face option to the preferred installed Nerd font (Recommended: Mono version)
  8. Save these new settings

The icons will be visible once you use the nerd font as the Terminal font.

Step 5 - Changing the color scheme

Unlike the Windows 10 Terminal Tutorial guide, changing the color scheme here is easier.

  1. Open Terminal, Go to the Dropdown menu → Settings → Defaults → Appearance
  2. Change the Color scheme to the preferred color scheme

If the preferred color scheme is not here

  1. Go to the website for Windows Terminal Color Schemes: https://windowsterminalthemes.dev/
  2. Find the preferred color scheme.
  3. Once you found it, Click on Get Theme.
  4. Go to Terminal → Settings → Color Schemes
  5. Click on "Open JSON File"
  6. Paste the Color scheme inside the "schemes" property of the JSON file.
  7. Save the JSON file and close the editor
  8. Go to Terminal → Settings → Defaults → Appearance
  9. Choose the recently added color scheme, and save it

Monokai Pro color scheme example Example Monokai Pro (Filter Octagon) color scheme.

Step 6 - Changing the Prompt design

  1. Go to Oh My Posh themes page: https://ohmyposh.dev/docs/themes
  2. Find the preferred theme
  3. Once you found it, open the PowerShell profile:
    notepad $PROFILE
  4. Add the -c configuration inside the initialization command:
    - oh-my-posh init pwsh | Invoke-Expression
    + oh-my-posh init pwsh -c "$env:POSH_THEMES_PATH/<theme>.omp.json" | Invoke-Expression
  5. Save the file, close Notepad, and refresh the profile:
    . $PROFILE

<theme> - Any Oh My Posh theme (example: atomic)

If POSH_THEMES_PATH didn't exist:

  1. Go to the Official GitHub repo of Oh My Posh: https://github.com/JanDeDobbeleer/oh-my-posh
  2. Open the Releases section
  3. Download themes
  4. Extract into C:\Users\<username>\themes or your preferred path (e.g. D:\User\themes). Basically, unzipping as a folder with files
  5. Once it's extracted, search for "env" and click on "Edit the system environment variables"
  6. Click on "Environment Variables" and create a new environment variable
    • Name: POSH_THEMES_PATH
    • Path: Preferred theme path (e.g. D:\User\themes or C:\Users\<username>\themes)
  7. Click OK, OK, and OK, Restart the terminal, and your preferred theme will appear.

Step 7 - Configuring Oh My Posh in Command Prompt

Default Command Prompt Default Command Prompt before customization.

Command Prompt does not support Oh My Posh natively. To enable custom prompts in CMD, we'll use Clink, which adds modern shell enhancements and Oh My Posh support.

  1. Open the Command prompt and type:
    winget install clink
  2. Restart the Command Prompt and use these commands:
    clink config prompt use oh-my-posh
    clink set ohmyposh.theme %POSH_THEMES_PATH%\<theme>.omp.json
Tip

Alternatively:

  1. Go to the official site of Clink: https://chrisant996.github.io/clink/
  2. Download the Installer (EXE).
  3. Run the Clink installer and complete the setup wizard.

The same configuration as on PowerShell will apply in the CMD also.

Step 8 - Designing the Terminal

Open the Terminal, then Settings

  • For Transparent title bar: Appearance -> Turn on Use acrylic material in the tab row
  • For a Transparent background:
    • Defaults -> Appearance -> Set Background Transparency to somewhere in between 40% and 90% (Recommended: 90%)
    • Turn on Enable Acrylic Material for a glassmorphic background design

Once it's changed, save the changes. The terminal will be glassmorphic once you made the titlebar and background transparent

Final customized terminal Final result with Oh My Posh, Nerd Fonts, Clink, custom colors, and transparency enabled.

Optionally - Neofetch-style Information box

Install fastfetch on Windows 11:

winget install fastfetch
Tip

Alternatively:

  1. Go to the Official GitHub repo of fastfetch: https://github.com/fastfetch-cli/fastfetch
  2. Open the Releases section
  3. Download the amd64.zip file (or aarch64.zip if you use ARM64) and install It

Once it's installed, run:

fastfetch

And it will show the information box similar to Neofetch.

Adding into the profile

  1. Open the PowerShell profile by typing:
    notepad $PROFILE
  2. Add the fastfetch command like this:
    + fastfetch
    oh-my-posh init pwsh -c "$env:POSH_THEMES_PATH/<theme>.omp.json" | Invoke-Expression
  3. Or use the alternative method:
    - oh-my-posh init pwsh -c "$env:POSH_THEMES_PATH/<theme>.omp.json" | Invoke-Expression
    + fastfetch
    + if($?) {
    +     oh-my-posh init pwsh -c "$env:POSH_THEMES_PATH/<theme>.omp.json" | Invoke-Expression
    +}
  4. Save the file, close Notepad, and restart PowerShell.

You'll see the information every time you start PowerShell.

Conclusion

Congratulations! Your Windows 11 Terminal now has:

  • A modern prompt powered by Oh My Posh
  • Beautiful icons from Nerd Fonts
  • Custom color schemes
  • Glassmorphic transparency effects
  • Optional Fastfetch system information

Feel free to experiment with different themes, fonts, and layouts until you find a setup that matches your workflow.

Happy customizing!

FAQ

Does this work on Windows 10?

Yes, although some appearance options may differ. Check out Windows 10 Terminal Tutorial guide for a minimal approach.

Is Oh My Posh free?

Yes.

Do I need Windows Terminal?

It is highly recommended for the best experience.

Can I use CMD instead of PowerShell?

Yes, using Clink.

Does this work with Windows PowerShell 5.1 and PowerShell 7?

Yes. However, PowerShell 7 is recommended because it receives new features and improvements.

Thanks for reading! If you want more tutorials like this, check out my YouTube channel!

GitHub @ArsenTech  ·  YouTube @ArsenTech  ·  Patreon ArsenTech  ·  ArsenTech's Website

Related Posts

How to Remove The 000.exe Virus

This guide will help you remove the 000.exe virus without any antivirus software or any help on your infected Windows PC.

ArsenTechNov 26th, 2025

Read more

How to Remove The MEMZ Trojan

This guide will help you remove the MEMZ trojan without any antivirus software or any help on your infected Windows PC. You'll learn to fix MBR corruptions after reading the post

ArsenTechNov 26th, 2025

Read more

How to Remove The Petya Ransomware

This guide will help you remove the Petya ransomware and decrypt files without any antivirus software or any help on your infected Windows PC

ArsenTechNov 26th, 2025

Read more

Interactions