From 1e392b290ada132f609733ac59e5a1d3e3b7db41 Mon Sep 17 00:00:00 2001 From: Remi Akirazar Date: Thu, 13 Nov 2025 22:06:02 -0500 Subject: [PATCH] spotify.py: fixed mismatched icons for play/pause --- spotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotify.py b/spotify.py index 2fc90e4..8cee986 100644 --- a/spotify.py +++ b/spotify.py @@ -41,7 +41,7 @@ class Spotify(base.ThreadPoolText): ("play_icon", "", "icon to display when playing music"), ("pause_icon", "", "icon to display when music paused"), ("update_interval", 0.5, "polling rate in seconds"), - ("format", "{icon} {artist} - {track}", "Spotify display format"), + ("format", "{icon} {artist}: {album} - {track}", "Spotify display format"), ] def __init__(self, **config) -> None: @@ -108,7 +108,7 @@ class Spotify(base.ThreadPoolText): def poll(self) -> str: # type: ignore """Poll content for the text box""" vars = { - "icon": self.pause_icon if self.playing else self.play_icon, + "icon": self.play_icon if self.playing else self.pause_icon, "artist": self.artist, "track": self.song_title, "album": self.album,