-
Notifications
You must be signed in to change notification settings - Fork 31
/
Sample.ps1
21 lines (19 loc) · 840 Bytes
/
Sample.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#requires -module @{ModuleName='PowerLine';ModuleVersion='3.3.1'}
$global:prompt = @(
{ "`t" } # On the first line, right-justify
{ New-PowerLineBlock (Get-Elapsed) -ErrorBack DarkRed -ErrorFore Gray74 -Fore Gray74 -Back DodgerBlue4 }
{ Get-Date -Format "T" }
{ "`n" } # Start another line
{ $MyInvocation.HistoryId }
{ "&Gear;" * $NestedPromptLevel }
{ if ($pushd = (Get-Location -Stack).count) { "$([char]187)" + $pushd } }
{ $pwd.Drive.Name }
{ Split-Path $pwd -Leaf }
)
Set-PowerLinePrompt -SetCurrentDirectory -PowerLineFont -Title {
-join @(
if (Test-Elevation) { "Administrator: " }
if ($IsCoreCLR) { "pwsh - " } else { "Windows PowerShell - " }
Convert-Path $pwd
)
} -Colors "SteelBlue4", "DodgerBlue3", "DeepSkyBlue2", "SkyBlue2", "SteelBlue2", "LightSkyBlue1"