Last active
September 8, 2020 18:16
-
-
Save draevin/76c081a77b5601b49bb1b8c76f59d23d to your computer and use it in GitHub Desktop.
Oh-My-Posh Custom Theme
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 | |
) | |
# path | |
$sPath = "$(Get-ShortPath -dir $pwd) " | |
# check for elevated prompt | |
$sAdmin = "" | |
If (Test-Administrator) { | |
$sAdmin = " $($sl.PromptSymbols.ElevatedSymbol)" | |
} | |
# git info | |
$sVcs = "" | |
#$vcsInfo = $sl.Colors.DriveForegroundColor | |
If ($vcsStatus = Get-VCSStatus) { | |
$vcsInfo = Get-VcsInfo -status ($vcsStatus) | |
$sVcs = "$($vcsInfo.VcInfo) " | |
} | |
# timestamp | |
$sTime = " [$(Get-Date -Format HH:mm:ss)]" | |
# check the last command state and indicate if failed | |
$sFailed = "" | |
If ($lastCommandFailed) { | |
$sFailed = " $($sl.PromptSymbols.FailedCommandSymbol)" | |
} | |
# virtualenv | |
$sVenv = "" | |
If (Test-VirtualEnv) { | |
$sVenv = " $(Get-VirtualEnvName)" | |
} | |
# with | |
$sWith = "" | |
If ($with) { | |
$sWith = " $($with.ToUpper())" | |
} | |
$rightPrompt = "$sFailed$sWith$sVenv$sAdmin$sTime" | |
$prompt += Set-CursorForRightBlockWrite -textLength $rightPrompt.Length | |
$prompt += Write-Prompt -Object $sFailed -ForegroundColor $sl.Colors.CommandFailedIconForegroundColor | |
$prompt += Write-Prompt -Object $sWith -ForegroundColor $sl.Colors.WithForegroundColor | |
$prompt += Write-Prompt -Object $sVenv -ForegroundColor $sl.Colors.VirtualEnvForegroundColor | |
$prompt += Write-Prompt -Object $sAdmin -ForegroundColor $sl.Colors.AdminIconForegroundColor | |
$prompt += Write-Prompt -Object $sTime -ForegroundColor $sl.colors.TimestampForegroundColor | |
$prompt += Write-Prompt -Object "`r" | |
If ($sl.DoubleCommandLine) { | |
$curveColor = If ($lastCommandFailed) { $sl.Colors.CommandFailedIconForegroundColor } Else { $sl.Colors.PromptSymbolColor } | |
$prompt += Write-Prompt $([char]::ConvertFromUtf32(0x256D)) -ForegroundColor $curveColor | |
$prompt += Write-Prompt $([char]::ConvertFromUtf32(0x2574)) -ForegroundColor $curveColor | |
} | |
$prompt += Write-Prompt -Object $sPath -ForegroundColor $sl.Colors.DriveForegroundColor | |
$prompt += Write-Prompt -Object $sVcs -ForegroundColor $vcsInfo.BackgroundColor | |
If ($sl.DoubleCommandLine) { | |
$prompt += Set-Newline | |
$curveColor = If ($lastCommandFailed) { $sl.Colors.CommandFailedIconForegroundColor } Else { $sl.Colors.PromptSymbolColor } | |
$prompt += Write-Prompt $([char]::ConvertFromUtf32(0x2570)) -ForegroundColor $curveColor | |
$prompt += Write-Prompt $([char]::ConvertFromUtf32(0x2508)) -ForegroundColor $curveColor | |
} | |
# Writes the postfixes to the prompt | |
$indicatorColor = If ($lastCommandFailed) { $sl.Colors.CommandFailedIconForegroundColor } Else { $sl.Colors.PromptSymbolColor } | |
$prompt += Write-Prompt -Object $sl.PromptSymbols.PromptIndicator -ForegroundColor $indicatorColor | |
$prompt += ' ' | |
$prompt | |
} | |
$sl = $global:ThemeSettings #local settings | |
$sl.PromptSymbols.PromptIndicator = [char]::ConvertFromUtf32(0x276F) | |
$sl.Colors.PromptForegroundColor = [ConsoleColor]::White | |
$sl.Colors.PromptSymbolColor = [ConsoleColor]::Green | |
$sl.Colors.PromptHighlightColor = [ConsoleColor]::DarkBlue | |
$sl.Colors.WithForegroundColor = [ConsoleColor]::DarkRed | |
$sl.Colors.VirtualEnvForegroundColor = [System.ConsoleColor]::Magenta | |
$sl.Colors.TimestampForegroundColor = [ConsoleColor]::DarkCyan | |
$sl | Add-Member -NotePropertyName DoubleCommandLine -NotePropertyValue 0 -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment