set part of the prompt beforehand to optimize the prompt function

master
lub 5 years ago
parent fd5e7d05d0
commit ebd1b7a30b

@ -3,21 +3,26 @@ Set-PSReadlineKeyHandler -Key Tab -Function Complete
Set-PSReadlineKeyHandler -Key Ctrl+d -Function ViExit Set-PSReadlineKeyHandler -Key Ctrl+d -Function ViExit
#endregion keybindings #endregion keybindings
function prompt { #region prompt dependencies
#set part of the prompt beforehand to optimize the prompt function
#depending on elevated permissions change the delimiter #depending on elevated permissions change the delimiter
$identity = [Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent() $identity = [Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()
if($identity.IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { if($identity.IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
$delimiter = '#' $delimiter = '#'
} else { } else {
$delimiter = '$' $delimiter = '$'
} }
$username = $env:USERNAME.ToLower()
$computername = $env:COMPUTERNAME.ToLower()
#endregion prompt dependencies
function prompt {
#shorten path with tilde if possible #shorten path with tilde if possible
#uses .Replace() to prevent regex #uses .Replace() to prevent regex
$cwd = (Get-Location).Path.Replace($HOME,'~') $cwd = (Get-Location).Path.Replace($HOME,'~')
'[{0}@{1} {2}]{3} ' -f $env:USERNAME.ToLower(),$env:COMPUTERNAME.ToLower(),$cwd,$delimiter '[{0}@{1} {2}]{3} ' -f $username,$computername,$cwd,$delimiter
} }
function Get-BetterADUser { function Get-BetterADUser {
param ( param (

Loading…
Cancel
Save