From 71c68bddcf2d9625a3b9acee9aab85c5f05e786c Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 23 Aug 2021 23:10:42 +0200 Subject: [PATCH] statusweather: Make symbols slightly larger. --- statusweather.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/statusweather.cpp b/statusweather.cpp index 6e48fb2..95c9d01 100644 --- a/statusweather.cpp +++ b/statusweather.cpp @@ -179,7 +179,8 @@ void print_weather() return "#66ff66"; }()}; - std::cout << format(R"({0:s} {2:.1Lf}°C{3:s})", + std::cout << format(R"({0:s} )" + R"({2:.1Lf}°C{3:s})", weather.icon, color, weather.temperature, weather.old ? R"( )" : "") << std::endl;