Add unicode characters

This commit is contained in:
Markus Fleschutz
2021-04-16 18:46:03 +02:00
parent f43dc498e4
commit 46f7fd7b9c
10 changed files with 19 additions and 19 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/pwsh
#!/usr/bin/pwsh
<#
.SYNTAX check-cpu-temp.ps1
.DESCRIPTION checks the CPU temperature
@ -26,7 +26,7 @@ try {
} elseif ($Temp -lt "0") {
write-warning "$Temp °C CPU temperature is quite low"
} else {
write-host -foregroundColor green "OK - $Temp °C CPU temperature"
write-host -foregroundColor green "✔️ $Temp °C CPU temperature"
}
exit 0
} catch {