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,