Check for $PSStyle variable
This commit is contained in:
parent
b6daf28f13
commit
513c645436
1 changed files with 39 additions and 37 deletions
|
@ -115,7 +115,8 @@ Set-PSReadLineKeyHandler -Chord Shift+Spacebar -Function SelfInsert
|
||||||
|
|
||||||
# Colours for a light-coloured terminal.
|
# Colours for a light-coloured terminal.
|
||||||
# https://learn.microsoft.com/en-us/powershell/scripting/learn/shell/using-light-theme?view=powershell-7.2
|
# https://learn.microsoft.com/en-us/powershell/scripting/learn/shell/using-light-theme?view=powershell-7.2
|
||||||
$ISETheme = @{
|
if ($null -ne $PSStyle) {
|
||||||
|
$ISETheme = @{
|
||||||
Command = $PSStyle.Foreground.FromRGB(0x0000FF)
|
Command = $PSStyle.Foreground.FromRGB(0x0000FF)
|
||||||
Comment = $PSStyle.Foreground.FromRGB(0x006400)
|
Comment = $PSStyle.Foreground.FromRGB(0x006400)
|
||||||
ContinuationPrompt = $PSStyle.Foreground.FromRGB(0x0000FF)
|
ContinuationPrompt = $PSStyle.Foreground.FromRGB(0x0000FF)
|
||||||
|
@ -134,25 +135,26 @@ $ISETheme = @{
|
||||||
Variable = $PSStyle.Foreground.FromRGB(0xff4500)
|
Variable = $PSStyle.Foreground.FromRGB(0xff4500)
|
||||||
#ListPredictionSelected = $PSStyle.Background.FromRGB(0x93A1A1)
|
#ListPredictionSelected = $PSStyle.Background.FromRGB(0x93A1A1)
|
||||||
Selection = $PSStyle.Background.FromRGB(0x00BFFF)
|
Selection = $PSStyle.Background.FromRGB(0x00BFFF)
|
||||||
}
|
}
|
||||||
Set-PSReadLineOption -Colors $ISETheme
|
Set-PSReadLineOption -Colors $ISETheme
|
||||||
$PSStyle.Formatting.FormatAccent = "`e[32m"
|
$PSStyle.Formatting.FormatAccent = "`e[32m"
|
||||||
$PSStyle.Formatting.TableHeader = "`e[32m"
|
$PSStyle.Formatting.TableHeader = "`e[32m"
|
||||||
$PSStyle.Formatting.ErrorAccent = "`e[36m"
|
$PSStyle.Formatting.ErrorAccent = "`e[36m"
|
||||||
$PSStyle.Formatting.Error = "`e[31m"
|
$PSStyle.Formatting.Error = "`e[31m"
|
||||||
$PSStyle.Formatting.Warning = "`e[33m"
|
$PSStyle.Formatting.Warning = "`e[33m"
|
||||||
$PSStyle.Formatting.Verbose = "`e[33m"
|
$PSStyle.Formatting.Verbose = "`e[33m"
|
||||||
$PSStyle.Formatting.Debug = "`e[33m"
|
$PSStyle.Formatting.Debug = "`e[33m"
|
||||||
$PSStyle.Progress.Style = "`e[33m"
|
$PSStyle.Progress.Style = "`e[33m"
|
||||||
$PSStyle.FileInfo.Directory = $PSStyle.Background.FromRgb(0x2f6aff) +
|
$PSStyle.FileInfo.Directory = $PSStyle.Background.FromRgb(0x2f6aff) +
|
||||||
$PSStyle.Foreground.BrightWhite
|
$PSStyle.Foreground.BrightWhite
|
||||||
$PSStyle.FileInfo.SymbolicLink = "`e[36m"
|
$PSStyle.FileInfo.SymbolicLink = "`e[36m"
|
||||||
$PSStyle.FileInfo.Executable = "`e[95m"
|
$PSStyle.FileInfo.Executable = "`e[95m"
|
||||||
$PSStyle.FileInfo.Extension['.ps1'] = "`e[36m"
|
$PSStyle.FileInfo.Extension['.ps1'] = "`e[36m"
|
||||||
$PSStyle.FileInfo.Extension['.ps1xml'] = "`e[36m"
|
$PSStyle.FileInfo.Extension['.ps1xml'] = "`e[36m"
|
||||||
$PSStyle.FileInfo.Extension['.psd1'] = "`e[36m"
|
$PSStyle.FileInfo.Extension['.psd1'] = "`e[36m"
|
||||||
$PSStyle.FileInfo.Extension['.psm1'] = "`e[36m"
|
$PSStyle.FileInfo.Extension['.psm1'] = "`e[36m"
|
||||||
Remove-Variable ISETheme
|
Remove-Variable ISETheme
|
||||||
|
}
|
||||||
|
|
||||||
# Keep this at the end.
|
# Keep this at the end.
|
||||||
if (Test-Path "$PSScriptRoot/local.ps1") {
|
if (Test-Path "$PSScriptRoot/local.ps1") {
|
||||||
|
|
Loading…
Reference in a new issue