From 363d46428eaa377925ff422cd8ba3077efbd91ba Mon Sep 17 00:00:00 2001 From: novatorem Date: Mon, 20 Jul 2020 23:35:53 -0400 Subject: [PATCH] Add more bars --- api/spotify-playing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/spotify-playing.py b/api/spotify-playing.py index fd17634..c3fdfe5 100644 --- a/api/spotify-playing.py +++ b/api/spotify-playing.py @@ -60,7 +60,7 @@ def nowPlaying(): return response.json() -def barGen(barCount=85): +def barGen(barCount): barCSS = "" left = 1 for i in range(1, barCount + 1): @@ -77,7 +77,7 @@ def loadImageB64(url): return b64encode(resposne.content).decode("ascii") def makeSVG(data): - barCount = 82 + barCount = 90 contentBar = "".join(["
" for i in range(barCount)]) barCSS = barGen(barCount)