From 26d4a9eeb999f23475e7f63bd3486fb11cd7c70e Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 13 Sep 2024 10:46:27 +0200 Subject: [PATCH] weather: make city more visible --- bin/weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/weather b/bin/weather index f3c539e..7dcb9f6 100755 --- a/bin/weather +++ b/bin/weather @@ -186,7 +186,7 @@ if __name__ == "__main__": "{}—{}°C".format(round(mintemp), round(maxtemp)), ] city = city.replace("%", "%%") - conditions.insert(0, f"%{{F#888}}{city}%{{F-}}") + conditions.insert(0, f"%{{F#bbb}}{city}%{{F-}}") output = " ".join(conditions).replace("%{Tx}", "%%{T%d}" % options.font_index) logger.debug("output: %s", output)