PowerShell/Scripts/my-profile.ps1

16 lines
678 B
PowerShell
Raw Normal View History

2022-04-07 08:32:52 +02:00
# MY POWERSHELL PROFILE (this profile file defines the look & feel of PowerShell)
2022-04-07 08:32:52 +02:00
# WINDOW TITLE
2021-04-17 13:12:27 +02:00
if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME }
2021-05-29 18:56:48 +02:00
$host.ui.RawUI.WindowTitle = "$Username @ $(hostname)"
2022-04-07 08:32:52 +02:00
# 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
2022-04-07 08:32:52 +02:00
# ALIAS NAMES
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
2022-04-07 08:32:52 +02:00
set-alias -name ll -value get-childitem # ll = list folder (long format)
del alias:ls -force -errorAction SilentlyContinue
set-alias -name ls -value list-folder.ps1 # ls = list folder (short format)