modified: RdzeN-Profile.ps1
new file: functions/prompt.ps1
This commit is contained in:
parent
83836cebf9
commit
7a95abaf92
@ -45,9 +45,10 @@ Get-ChildItem $path_gitea_powershell_profile_functions | ForEach-Object {
|
||||
. $_.FullName
|
||||
}
|
||||
|
||||
# 97. Test Profile
|
||||
# 4. Test Profile
|
||||
Test-Profile
|
||||
# 98. Override Profile
|
||||
# 5. Override Profile
|
||||
Override-Profile
|
||||
# 99. Reload Profile
|
||||
Reload-Profile
|
||||
# 6. Reload Profile
|
||||
Reload-Profile
|
||||
|
||||
|
32
functions/prompt.ps1
Normal file
32
functions/prompt.ps1
Normal file
@ -0,0 +1,32 @@
|
||||
function prompt
|
||||
{
|
||||
Write-Host "[" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "PS" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "]" -NoNewline -ForegroundColor Blue
|
||||
Write-Host " " -NoNewline -ForegroundColor Black
|
||||
Write-Host "[" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "$(get-date -Format "yyyy-MM-dd HH:mm:ss")" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "]" -NoNewline -ForegroundColor Blue
|
||||
Write-Host " " -NoNewline -ForegroundColor Black
|
||||
Write-Host "[" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "$Env:USERNAME" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "@" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "$env:COMPUTERNAME" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "]" -NoNewline -ForegroundColor Blue
|
||||
Write-Host " " -NoNewline -ForegroundColor Black
|
||||
Write-Host "[" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "$($PWD)" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "]" -NoNewline -ForegroundColor Blue
|
||||
Write-Host ""
|
||||
|
||||
Write-Host "[" -NoNewline -ForegroundColor Blue
|
||||
Write-Host "PS" -NoNewline -ForegroundColor Cyan
|
||||
Write-Host "]" -NoNewline -ForegroundColor Blue
|
||||
|
||||
Write-Host " " -NoNewline -ForegroundColor Black
|
||||
Write-Host "$('>' * ($nestedPromptLevel + 1))" -NoNewline -ForegroundColor Cyan
|
||||
|
||||
# .Link
|
||||
# https://go.microsoft.com/fwlink/?LinkID=225750
|
||||
# .ExternalHelp System.Management.Automation.dll-help.xml
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user