oh-my-posh.psm1
<# .SYNOPSIS Generates the prompt before each line in the console #> function Get-PoshCommand { if ($IsMacOS) { return "$PSScriptRoot/bin/posh-darwin-amd64" } if ($IsLinux) { return "$PSScriptRoot/bin/posh-linux-amd64" } if ([Environment]::Is64BitOperatingSystem) { return "$PSScriptRoot/bin/posh-windows-amd64.exe" } return "$PSScriptRoot/bin/posh-windows-386.exe" } function Set-ExecutablePermissions { # Set the right binary to executable before doing anything else # Permissions don't need to be set on Windows if ($PSVersionTable.PSEdition -ne "Core" -or $IsWindows) { return } $executable = Get-PoshCommand if (-Not (Test-Path $executable)) { # This should only happend with a corrupt installation Write-Warning "Executable at $executable was not found" return } Invoke-Expression -Command "chmod +x $executable" } function Set-PoshPrompt { param( [Parameter(Mandatory = $false)] [string] $Theme ) $config = "" if (Test-Path "$PSScriptRoot/themes/$Theme.omp.json") { $config = "$PSScriptRoot/themes/$Theme.omp.json" } elseif (Test-Path $Theme) { $config = (Resolve-Path -Path $Theme).Path } else { $config = "$PSScriptRoot/themes/jandedobbeleer.omp.json" } $poshCommand = Get-PoshCommand Invoke-Expression (& $poshCommand --init --shell=pwsh --config="$config") } function Get-PoshThemes { $esc = [char]27 $consoleWidth = $Host.UI.RawUI.WindowSize.Width $logo = @' __ _____ _ ___ ___ ______ _ __ / / | _ | | | \/ | | ___ \ | | \ \ / / | | | | |__ | . . |_ _ | |_/ /__ ___| |__ \ \ < < | | | | '_ \ | |\/| | | | | | __/ _ \/ __| '_ \ > > \ \ \ \_/ / | | | | | | | |_| | | | | (_) \__ \ | | | / / \_\ \___/|_| |_| \_| |_/\__, | \_| \___/|___/_| |_| /_/ __/ | |___/ '@ Write-Host $logo $poshCommand = Get-PoshCommand Get-ChildItem -Path "$PSScriptRoot\themes\*" -Include '*.omp.json' | Sort-Object Name | ForEach-Object -Process { Write-Host ("=" * $consoleWidth) Write-Host "$esc[1m$($_.BaseName)$esc[0m" Write-Host "" & $poshCommand -config $($_.FullName) -pwd $PWD Write-Host "" } Write-Host ("=" * $consoleWidth) } function Export-PoshTheme { param( [Parameter(Mandatory = $true)] [string] $FilePath ) $config = $global:PoshSettings.Theme $poshCommand = Get-PoshCommand # Save current encoding and swap for UTF8 without BOM $originalOutputEncoding = [Console]::OutputEncoding [Console]::OutputEncoding = [Text.UTF8Encoding]::new($false) # Create Config File $configString = & $poshCommand -config $config -print-config [IO.File]::WriteAllLines($FilePath, $configString) # Restore initial encoding [Console]::OutputEncoding = $originalOutputEncoding } # Helper function to create argument completion results function New-CompletionResult { param( [Parameter(Mandatory)] [string]$CompletionText, [string]$ListItemText = $CompletionText, [System.Management.Automation.CompletionResultType]$CompletionResultType = [System.Management.Automation.CompletionResultType]::ParameterValue, [string]$ToolTip = $CompletionText ) New-Object System.Management.Automation.CompletionResult $CompletionText, $ListItemText, $CompletionResultType, $ToolTip } function ThemeCompletion { param( $commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter ) $themes = Get-ChildItem -Path "$PSScriptRoot\themes\*" -Include '*.omp.json' | Sort-Object Name | Select-Object -Property @{ label='BaseName' expression={$_.BaseName.Replace('.omp', '')} } $themes | Where-Object { $_.BaseName.ToLower().StartsWith($wordToComplete.ToLower()); } | Select-Object -Unique -ExpandProperty BaseName | ForEach-Object { New-CompletionResult -CompletionText $_ } } Set-ExecutablePermissions Register-ArgumentCompleter ` -CommandName Set-PoshPrompt ` -ParameterName Theme ` -ScriptBlock $function:ThemeCompletion # V2 compatibility functions # These should be removed at a certain point in time # but to facilitate ease of transition they are kept # as long as issues/feature requests keep popping up function Get-PoshInfoForV2Users { Write-Host @' Hi there! It seems you're using an oh-my-posh V2 cmdlet while running V3. To migrate your current setup to V3, have a look the documentation. https://ohmyposh.dev/docs/upgrading '@ } Set-Alias -Name Set-Prompt -Value Get-PoshInfoForV2Users -Force Set-Alias -Name Get-ThemesLocation -Value Get-PoshInfoForV2Users -Force Set-Alias -Name Show-ThemeSymbols -Value Get-PoshInfoForV2Users -Force Set-Alias -Name Show-ThemeColors -Value Get-PoshInfoForV2Users -Force Set-Alias -Name Show-Colors -Value Get-PoshInfoForV2Users -Force Set-Alias -Name Write-ColorPreview -Value Get-PoshInfoForV2Users -Force |