mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Updated my-profile.ps1
This commit is contained in:
parent
2917a123ac
commit
3c530df89f
@ -1,20 +1,20 @@
|
|||||||
# MY POWERSHELL PROFILE - it defines the look & feel of PowerShell.
|
# POWERSHELL PROFILE TO DEFINE THE LOOK & FEEL
|
||||||
|
|
||||||
# WINDOW TITLE
|
# WINDOW TITLE
|
||||||
if ($IsLinux) { $username = $(whoami) } else { $username = $env:USERNAME }
|
if ($IsLinux) { $username = $(whoami) } else { $username = $env:USERNAME }
|
||||||
$host.ui.RawUI.WindowTitle = "$username @ $(hostname)"
|
$host.ui.RawUI.WindowTitle = "$username @ $(hostname)"
|
||||||
|
|
||||||
# GREETING
|
# GREETING
|
||||||
Write-Host "👋 Welcome $username to $(hostname)'s PowerShell - type 'hlp' if you need help." -foregroundColor green
|
Write-Host "👋 Welcome $username to $(hostname)'s PowerShell - type 'FAQ' for help." -foregroundColor green
|
||||||
|
|
||||||
# PROMPT
|
# PROMPT
|
||||||
function prompt { Write-Host "`n➤ " -noNewline -foregroundColor yellow; return " " }
|
function prompt { Write-Host "`n➤ " -noNewline -foregroundColor yellow; return " " }
|
||||||
|
|
||||||
# ALIASES
|
# ALIASES
|
||||||
set-alias -name enter -value enter-host.ps1
|
Set-Alias -name enter -value enter-host.ps1
|
||||||
set-alias -name hlp -value write-help.ps1
|
Set-Alias -name FAQ -value write-help.ps1
|
||||||
set-alias -name ll -value Get-ChildItem # ll = list folder (long format)
|
Set-Alias -name ll -value Get-ChildItem # ll = list folder (long format)
|
||||||
del alias:ls -force -errorAction SilentlyContinue
|
Del alias:ls -force -errorAction SilentlyContinue
|
||||||
set-alias -name ls -value list-folder.ps1 # ls = list folder (short format)
|
Set-Alias -name ls -value list-folder.ps1 # ls = list folder (short format)
|
||||||
del alias:pwd -force -errorAction SilentlyContinue
|
Del alias:pwd -force -errorAction SilentlyContinue
|
||||||
set-alias -name pwd -value list-workdir.ps1 # pwd = print working directory
|
Set-Alias -name pwd -value list-workdir.ps1 # pwd = print working directory
|
||||||
|
Loading…
Reference in New Issue
Block a user