diff --git a/spotiplayer_pi/config.yaml b/spotiplayer_pi/config.yaml index 49718a9..84519bf 100644 --- a/spotiplayer_pi/config.yaml +++ b/spotiplayer_pi/config.yaml @@ -6,7 +6,7 @@ refresh_interval: 0.4 # (float) number of seconds in-between progress bar ref # Set Color Theme color_theme: - text: [255, 255, 255] # [R, G, B] All text components - bar_outline: [255, 255, 255] # [R, G, B] Bar Outline - bar_inside: [30, 215, 96] # [R, G, B] Bar in-fill - background: [25, 20, 20] # [R, G, B] Background + text: [253, 238, 216] # [R, G, B] All text components + bar_outline: [16, 81, 86] # [R, G, B] Bar in-fill + bar_inside: [148, 191, 136] # [R, G, B] Bar in-fill + background: [13, 19, 33] # [R, G, B] Background diff --git a/spotiplayer_pi/main.py b/spotiplayer_pi/main.py index 636fa18..ef7b395 100644 --- a/spotiplayer_pi/main.py +++ b/spotiplayer_pi/main.py @@ -95,6 +95,7 @@ def display_loop(api: Api, cfg: Dict): time.sleep(cfg["api_interval"]) elif type(data) == dict: + current_mode = 1 current_track = data["track"] + data["artists"][0] + data["album"] if current_track != last_track: print("updating track") @@ -116,7 +117,7 @@ def display_loop(api: Api, cfg: Dict): bg.paste(img, (10, 30)) draw = ImageDraw.Draw(bg) draw.text( - (150, 40), + (150, 28), "\n".join(textwrap.wrap(", ".join(data["artists"]), width=16)), font=Font1, fill=cfg["color_theme"]["text"],