From 0edeca4765fecb51ec361d3a82c1fb9270a1dbaf Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 29 May 2021 18:56:48 +0200 Subject: [PATCH] Update my-profile.ps1 --- Scripts/my-profile.ps1 | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/Scripts/my-profile.ps1 b/Scripts/my-profile.ps1 index 762b5505..f2672bd7 100755 --- a/Scripts/my-profile.ps1 +++ b/Scripts/my-profile.ps1 @@ -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