statusweather: Make symbols slightly larger.

This commit is contained in:
tastytea 2021-08-23 23:10:42 +02:00
parent 1a2aa46ba2
commit 71c68bddcf
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 1 deletions

View File

@ -179,7 +179,8 @@ void print_weather()
return "#66ff66";
}()};
std::cout << format(R"({0:s} <span color="{1:s}">{2:.1Lf}°C</span>{3:s})",
std::cout << format(R"(<big>{0:s}</big> )"
R"(<span color="{1:s}">{2:.1Lf}°C</span>{3:s})",
weather.icon, color, weather.temperature,
weather.old ? R"( <span color="red">⏳</span>)" : "")
<< std::endl;