From deca430aae411851fd0daafa780683b29b16a758 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 15 May 2024 14:51:53 +0200 Subject: [PATCH] Updated my-profile.ps1 --- scripts/my-profile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/my-profile.ps1 b/scripts/my-profile.ps1 index 7982a792..be879214 100755 --- a/scripts/my-profile.ps1 +++ b/scripts/my-profile.ps1 @@ -5,7 +5,7 @@ if ($IsLinux) { $Username = $(whoami) } else { $Username = $env:USERNAME } $host.ui.RawUI.WindowTitle = "$Username @ $(hostname)" # GREETING -Write-Host "Hi $USERNAME, what's up?" -foregroundColor green +Write-Host "Welcome $USERNAME at $(hostname), what's up?" -foregroundColor green # COMMAND PROMPT function prompt { Write-Host "`n➤ " -noNewline -foregroundColor yellow; return " " }