From f833d8f40d2f33f021fd3e14d78ba328f91d2ec6 Mon Sep 17 00:00:00 2001 From: czjstmax Date: Fri, 21 Nov 2025 20:51:07 +0100 Subject: unfortunately i do have to use powershell every once in a while so made it at least usable --- cfg/powershell_prompt.ps1 | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 cfg/powershell_prompt.ps1 (limited to 'cfg/powershell_prompt.ps1') diff --git a/cfg/powershell_prompt.ps1 b/cfg/powershell_prompt.ps1 deleted file mode 100644 index d328d49..0000000 --- a/cfg/powershell_prompt.ps1 +++ /dev/null @@ -1,19 +0,0 @@ -function prompt { - $user = $env:USERNAME - $cwd = (Get-Location).Path - - Write-Host "╭" -ForegroundColor white -NoNewline - Write-Host "(" -ForegroundColor red -NoNewline - Write-Host $user -ForegroundColor white -NoNewline - Write-Host "⮞" -ForegroundColor red -NoNewline - Write-Host "⮞" -ForegroundColor white -NoNewline - Write-Host "⮞" -ForegroundColor red -NoNewline - if ($cwd -eq "C:\Users\$user") { - Write-Host "~" -ForegroundColor white -NoNewline - } else { - Write-Host $cwd -ForegroundColor white -NoNewline - } - Write-Host ")" -ForegroundColor red - Write-Host "╰" -ForegroundColor red -NoNewline - return "⮞ " -} -- cgit v1.3.1