From ffe86057f47f9c0636cdd1a3be3168331d7e956d Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sun, 19 Dec 2021 20:36:10 +0100 Subject: [PATCH] polybar-weather: use location pin instead of windsock --- bin/polybar-weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/polybar-weather b/bin/polybar-weather index 3448da5..9fba65d 100755 --- a/bin/polybar-weather +++ b/bin/polybar-weather @@ -178,7 +178,7 @@ if __name__ == "__main__": ), ] city = city.replace('%', '%%') - conditions.insert(0, f"%{{F#888}}%{{Tx}}%{{T-}} {city}%{{F-}}") + conditions.insert(0, f"%{{F#888}}%{{Tx}}%{{T-}} {city}%{{F-}}") output = " ".join(conditions).replace("%{Tx}", "%%{T%d}" % options.font_index) logger.debug("output: %s", output)