mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Update my-profile.ps1
This commit is contained in:
parent
4d13b25eb2
commit
0edeca4765
@ -1,21 +1,20 @@
|
||||
# My PowerShell Profile
|
||||
# =====================
|
||||
# Welcome to 'my-profile.ps1' - this file defines the look & feel of PowerShell.
|
||||
# Adapt the following lines to your needs, please.
|
||||
# My PowerShell Profile
|
||||
# =====================
|
||||
# Welcome to 'my-profile.ps1' - this file defines the look & feel of PowerShell.
|
||||
# Adapt the following lines to your needs, please.
|
||||
|
||||
|
||||
# My Welcome Message
|
||||
# ------------------
|
||||
# My Welcome Message
|
||||
# ------------------
|
||||
if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME }
|
||||
$Hostname = $(hostname)
|
||||
$Time = (get-date).ToString('t')
|
||||
$host.ui.RawUI.WindowTitle = "$Username @ $Hostname"
|
||||
"🧑$Username entered 📂$(Get-Location) at 💻$Hostname, it's $Time"
|
||||
$host.ui.RawUI.WindowTitle = "$Username @ $(hostname)"
|
||||
"🧑$Username entered 📂$(get-location) at 💻$(hostname), it's $Time"
|
||||
|
||||
|
||||
# My Command Prompt
|
||||
# -----------------
|
||||
function prompt { write-host -noNewline -foregroundColor yellow "`n➤"; return " " } # result is: ➤
|
||||
function prompt { write-host -noNewline -foregroundColor yellow "`n➤"; return " " }
|
||||
|
||||
|
||||
# My Alias Names (sorted alphabetically)
|
||||
@ -25,9 +24,6 @@ set-alias -name pwd -value list-workdir.ps1 # pwd = print working directory
|
||||
set-alias -name ll -value get-childitem # ll = list long
|
||||
del alias:ls -force -errorAction SilentlyContinue
|
||||
set-alias -name ls -value list-dir.ps1
|
||||
set-alias -name mute -value mute-audio.ps1
|
||||
set-alias -name unmute -value unmute-audio.ps1
|
||||
set-alias -name .. -value cd-up.ps1 # 1 dir level up
|
||||
set-alias -name ... -value cd-up2.ps1 # 2 dir levels up
|
||||
set-alias -name .... -value cd-up3.ps1 # 3 dir levels up
|
||||
set-alias -name ..... -value cd-up4.ps1 # 4 dir levels up
|
||||
|
Loading…
Reference in New Issue
Block a user