This guide will walk you through the manual installation process for the Windows Terminal theme.
Locate your PowerShell profile file, and create one if it doesn't exist:
Test-Path $PROFILE
Create a new profile:
New-Item -Path $PROFILE -ItemType File -Force
Install required PowerShell modules:
Install-Module -Name Terminal-Icons -Repository PSGallery -Force
Install-Module -Name Z -Force
Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck
Download and install your chosen Nerd Fonts font.
Install Oh-My-Posh:
Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))
Install the Microsoft.PowerShell_profile.ps1 file:
curl -o $PROFILE -s https://raw.githubusercontent.com/BadEnd777/dotfiles/main/windows/Powershell/Microsoft.PowerShell_profile.ps1
Install the 1ms.omp.json file:
curl -o $env:POSH_THEMES_PATH\1ms.omp.json -s https://raw.githubusercontent.com/BadEnd777/dotfiles/main/windows/Oh-My-Posh/1ms.omp.json
- Customize the
Search
function in your PowerShell profile for your preferred search engine. - Customize the
Work
function in your PowerShell profile to open your preferred directory.
Restart PowerShell to apply the changes and enjoy your enhanced terminal experience.