2021-05-29 18:56:48 +02:00
|
|
|
|
# My PowerShell Profile
|
|
|
|
|
# =====================
|
|
|
|
|
# Welcome to 'my-profile.ps1' - this file defines the look & feel of PowerShell.
|
|
|
|
|
# Adapt the following lines to your needs, please.
|
2021-04-10 09:11:56 +02:00
|
|
|
|
|
|
|
|
|
|
2021-05-29 18:56:48 +02:00
|
|
|
|
# My Welcome Message
|
|
|
|
|
# ------------------
|
2021-04-17 13:12:27 +02:00
|
|
|
|
if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME }
|
2021-04-22 17:46:40 +02:00
|
|
|
|
$Time = (get-date).ToString('t')
|
2021-05-29 18:56:48 +02:00
|
|
|
|
$host.ui.RawUI.WindowTitle = "$Username @ $(hostname)"
|
2021-07-12 14:54:50 +02:00
|
|
|
|
"Welcome to PowerShell at 📂$(get-location) on 💻$(hostname), it's $Time"
|
2021-04-10 09:11:56 +02:00
|
|
|
|
|
|
|
|
|
|
2021-04-03 15:24:18 +02:00
|
|
|
|
# My Command Prompt
|
|
|
|
|
# -----------------
|
2021-05-29 18:56:48 +02:00
|
|
|
|
function prompt { write-host -noNewline -foregroundColor yellow "`n➤"; return " " }
|
2021-02-27 11:19:57 +01:00
|
|
|
|
|
2021-04-03 15:24:18 +02:00
|
|
|
|
|
2021-04-10 09:11:56 +02:00
|
|
|
|
# My Alias Names (sorted alphabetically)
|
2021-04-03 15:24:18 +02:00
|
|
|
|
# --------------
|
2021-05-04 20:08:38 +02:00
|
|
|
|
del alias:pwd -force -errorAction SilentlyContinue
|
2021-04-20 16:47:44 +02:00
|
|
|
|
set-alias -name pwd -value list-workdir.ps1 # pwd = print working directory
|
2021-04-10 09:11:56 +02:00
|
|
|
|
set-alias -name ll -value get-childitem # ll = list long
|
2021-05-04 20:08:38 +02:00
|
|
|
|
del alias:ls -force -errorAction SilentlyContinue
|
|
|
|
|
set-alias -name ls -value list-dir.ps1
|
2021-04-25 10:25:03 +02:00
|
|
|
|
set-alias -name .. -value cd-up.ps1 # 1 dir level up
|
|
|
|
|
set-alias -name ... -value cd-up2.ps1 # 2 dir levels up
|