Skip to content

Instantly share code, notes, and snippets.

View justinhachemeister's full-sized avatar
🎯
Focusing

Justin Hachemeister justinhachemeister

🎯
Focusing
View GitHub Profile
function Set-Progress {
param( [int]$Percent )
if ($Percent -lt 100) {
Write-Host -NoNewline "`e]9;4;1;${Percent}`e\"
}
else {
Write-Host -NoNewline "`e]9;4;0`e\"
}
}