mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-31 22:07:25 -08:00
67 lines
2.3 KiB
PowerShell
67 lines
2.3 KiB
PowerShell
$global:PoshSettings = New-Object -TypeName PSObject -Property @{
|
|
Theme = "";
|
|
ShowDebug = $false
|
|
}
|
|
|
|
if (Test-Path "::CONFIG::") {
|
|
$global:PoshSettings.Theme = Resolve-Path -Path "::CONFIG::"
|
|
}
|
|
function Set-PoshContext {}
|
|
|
|
function Set-GitStatus {
|
|
if (Get-Command -Name "Get-GitStatus" -ErrorAction SilentlyContinue) {
|
|
$Global:GitStatus = Get-GitStatus
|
|
}
|
|
}
|
|
|
|
[ScriptBlock]$Prompt = {
|
|
#store if the last command was successfull
|
|
$lastCommandSuccess = $?
|
|
#store the last exit code for restore
|
|
$realLASTEXITCODE = $global:LASTEXITCODE
|
|
$errorCode = 0
|
|
Set-PoshContext
|
|
if ($lastCommandSuccess -eq $false) {
|
|
#native app exit code
|
|
if ($realLASTEXITCODE -is [int] -and $realLASTEXITCODE -gt 0) {
|
|
$errorCode = $realLASTEXITCODE
|
|
}
|
|
else {
|
|
$errorCode = 1
|
|
}
|
|
}
|
|
|
|
$executionTime = -1
|
|
$history = Get-History -ErrorAction Ignore -Count 1
|
|
if ($null -ne $history -and $null -ne $history.EndExecutionTime -and $null -ne $history.StartExecutionTime) {
|
|
$executionTime = ($history.EndExecutionTime - $history.StartExecutionTime).TotalMilliseconds
|
|
}
|
|
|
|
$startInfo = New-Object System.Diagnostics.ProcessStartInfo
|
|
$startInfo.FileName = "::OMP::"
|
|
$config = $global:PoshSettings.Theme
|
|
$showDebug = $global:PoshSettings.ShowDebug
|
|
$cleanPWD = $PWD.ProviderPath.TrimEnd("\")
|
|
$startInfo.Arguments = "--debug=""$showDebug"" --config=""$config"" --error=$errorCode --pwd=""$cleanPWD"" --execution-time=$executionTime"
|
|
$startInfo.Environment["TERM"] = "xterm-256color"
|
|
$startInfo.CreateNoWindow = $true
|
|
$startInfo.StandardOutputEncoding = [System.Text.Encoding]::UTF8
|
|
$startInfo.RedirectStandardOutput = $true
|
|
$startInfo.UseShellExecute = $false
|
|
if ($PWD.Provider.Name -eq 'FileSystem') {
|
|
$startInfo.WorkingDirectory = $PWD.ProviderPath
|
|
}
|
|
$process = New-Object System.Diagnostics.Process
|
|
$process.StartInfo = $startInfo
|
|
$process.Start() | Out-Null
|
|
$standardOut = $process.StandardOutput.ReadToEnd()
|
|
$process.WaitForExit()
|
|
$standardOut
|
|
$global:LASTEXITCODE = $realLASTEXITCODE
|
|
#remove temp variables
|
|
Remove-Variable realLASTEXITCODE -Confirm:$false
|
|
Remove-Variable lastCommandSuccess -Confirm:$false
|
|
Set-GitStatus
|
|
}
|
|
Set-Item -Path Function:prompt -Value $Prompt -Force
|