Last active
April 9, 2022 20:31
-
-
Save ChrisFrontDev/c5f144300908e8438a3b8708576a9ad5 to your computer and use it in GitHub Desktop.
Aura theme for windows powershell + Windows Terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#requires -Version 2 -Modules posh-git | |
function Write-Theme { | |
param( | |
[bool] | |
$lastCommandFailed, | |
[string] | |
$with | |
) | |
#check the last command state and indicate if failed | |
$promtSymbolColor = $sl.Colors.PromptSymbolColor | |
If ($lastCommandFailed) { | |
$promtSymbolColor = $sl.Colors.WithForegroundColor | |
} | |
# Writes the postfixes to the prompt | |
$prompt += Write-Prompt -Object ($sl.PromptSymbols.PromptIndicator + " ") -ForegroundColor $promtSymbolColor | |
# Writes the drive portion | |
$drive = $sl.PromptSymbols.HomeSymbol | |
if ($pwd.Path -ne $HOME) { | |
$drive = "$(Split-Path -path $pwd -Leaf)" | |
} | |
$prompt += Write-Prompt -Object $drive -ForegroundColor $sl.Colors.DriveForegroundColor | |
$status = Get-VCSStatus | |
if ($status) { | |
$prompt += Write-Prompt -Object " git:(" -ForegroundColor $sl.Colors.PromptHighlightColor | |
$prompt += Write-Prompt -Object "$($status.Branch)" -ForegroundColor $sl.Colors.WithForegroundColor | |
$prompt += Write-Prompt -Object ")" -ForegroundColor $sl.Colors.PromptHighlightColor | |
if ($status.Working.Length -gt 0) { | |
$prompt += Write-Prompt -Object (" " + $sl.PromptSymbols.GitDirtyIndicator) -ForegroundColor $sl.Colors.GitDefaultColor | |
} | |
} | |
$prompt += ' ' | |
$prompt | |
} | |
$sl = $global:ThemeSettings #local settings | |
$sl.PromptSymbols.PromptIndicator = [char]::ConvertFromUtf32(0x279C) | |
$sl.Colors.PromptSymbolColor = [ConsoleColor]::Blue | |
$sl.Colors.PromptHighlightColor = [ConsoleColor]::Blue | |
$sl.Colors.DriveForegroundColor = [ConsoleColor]::Cyan | |
$sl.Colors.WithForegroundColor = [ConsoleColor]::Yellow | |
$sl.PromptSymbols.GitDirtyIndicator = [char]::ConvertFromUtf32(10007) | |
$sl.Colors.GitDefaultColor = [ConsoleColor]::Yellow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment