mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
25 lines
683 B
PowerShell
Executable File
25 lines
683 B
PowerShell
Executable File
# My PowerShell Profile
|
|
# =====================
|
|
# Welcome to 'my-profile.ps1' - this file defines the look&feel of PowerShell.
|
|
# Simply comment/uncomment/adapt the following lines.
|
|
#
|
|
#
|
|
# My Command Prompt
|
|
# -----------------
|
|
|
|
# function prompt {$null} # result is: PS>
|
|
|
|
# function prompt { "$ " } # result is: $
|
|
|
|
function prompt {
|
|
if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME }
|
|
$host.ui.RawUI.WindowTitle = "$Username @ $(hostname)"
|
|
write-host -foregroundColor blue -noNewLine "$(Get-Location)"
|
|
return "> "
|
|
} # result is: C:\>
|
|
|
|
|
|
# My Alias Names
|
|
# --------------
|
|
set-alias -name lsf -value get-childitem # lsf means list directory formatted
|