Added a welcome message when typing pm and added some ascii art

This commit is contained in:
ManOfGoldForever 2026-02-02 00:05:09 -05:00
parent 4b8d4eb0c6
commit 62caefcd22
9 changed files with 95 additions and 5 deletions

12
windows-install.ps1 Normal file
View file

@ -0,0 +1,12 @@
$binary = "pm.exe"
if (Test-Path ".\$binary") {
$binDir = "$HOME\.cargo\bin"
if (!(Test-Path $binDir)) { New-Item -ItemType Directory -Path $binDir }
Write-Host "Installing $binary to $binDir..." -ForegroundColor Cyan
Copy-Item ".\$binary" "$binDir"
Write-Host "Done! Restart your terminal and type 'pm'." -ForegroundColor Green
} else {
Write-Host "Error: $binary not found in this folder." -ForegroundColor Red
}