statusweather: raise maximum comfortable temperature to 28

This commit is contained in:
tastytea 2023-08-16 21:43:52 +02:00
parent c9c99cf37c
commit 233a7dd7e8
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ void print_weather() {
const std::lock_guard<std::mutex> guard(mutex_weather);
const std::string color{[] {
if (weather.temperature > 25.0) {
if (weather.temperature > 28.0) {
return "#ff2200";
}
if (weather.temperature < 0.0) {