Announcements

Help Wizard

Step 1

NEXT STEP

Doesnt show what a song play now in minimize window

Solved!

Doesnt show what a song play now in minimize window

Plan Premium

Country Ukraine

Operating System Linux Mint 19.3 MATE

 

After update client version Spotify to 1:1.1.67.586.gbb5ef64e, i cant see what a song playing in minimize window. Clear cache and config - doesnt solve.

2021-09-08_16-25.png
2021-09-08_16-27.png
Reply

Accepted Solutions
Marked as solution

I'm having the same issue on OpenSUSE Tumbleweed with Cinnamon DE.

 

As a workaround here's a bash one-liner to get the currently playing song from the API and set the window title (requires curl, jq and xdotool). You'll need to change the <token> to your personal access token. You can get your token from https://developer.spotify.com/console/get-users-currently-playing-track/

 

NOW_PLAYING=$(curl -s "https://api.spotify.com/v1/me/player/currently-playing" -H "Authorization: Bearer <token>" | jq -r ".item.artists[0].name + \" - \" + .item.name"); xdotool search --onlyvisible --name "Spotify" set_window --name "[Spotify] $NOW_PLAYING"

 

You can make it run every few seconds while Spotify is running. Et voilà! The most inefficient workaround possible. It would be nice if Spotify actually fixed Linux bugs sometimes so we wouldn't need to resort to unnecessarily querying the API. Or even better, open source the client and we would have fixed it ourselves months ago.

View solution in original post

15 Replies

Yes, getting the same problem here on Debian 11 (bullseye).

Same here in KDE / Plasma 5 environment (Kubuntu 20.04 LTS).

 

It seems to be because the latest Spotify client doesn't show the song & artist in its title bar any more, and the task bar button is just mirroring the title bar.

I can confirm this is happening on Arch with KDE (latest)

Same here on Manjaro XFCE but I kinda like it better this way 😏

If you go into fullscreen mode, then back: window title updates to the artist and song name, but only once and stays stuck on those names. 😒

Same problem here, on Debian Sid + MATE. Also, the Spotify icon is not displayed, but just a generic icon. From my point of view, these are annoying bugs.

Update: In addition to the issues mentioned above, when minimizing the window, the player bar does not update the information about the song being played until the next song is loaded, also the window title does not contain information about the song being played.

I know this thread is over four months old now... but is it possible that it's still not fixed? Anybody here having a solution for that?

I've updated to the version spotify 1.1.77.643.g3c4c6fc6 and the bug still exists... come on Spotify, you can do better!

I'm having the same problem with Debian 11 and KDE Plasma 5.20.5 when running the latest desktop client (1.1.84.716.gc5f8b819). IIRC it is happening since the redesign of the desktop client. Today I noticed something new which might help to fix the issue. If I close the application the title/task bar text switches to the correct value and it shows "Spotify Premium" or the artist and track which was playing.

Same issue. Annoying that they dont fix the problem. 

Still having this issue 2022-09-21 on linux mint. I've noticed the same thing as belzebub40k, the artist and song title only show when you close the program as seen in my attached image.

2022-09-21 11-54-16.png
Marked as solution

I'm having the same issue on OpenSUSE Tumbleweed with Cinnamon DE.

 

As a workaround here's a bash one-liner to get the currently playing song from the API and set the window title (requires curl, jq and xdotool). You'll need to change the <token> to your personal access token. You can get your token from https://developer.spotify.com/console/get-users-currently-playing-track/

 

NOW_PLAYING=$(curl -s "https://api.spotify.com/v1/me/player/currently-playing" -H "Authorization: Bearer <token>" | jq -r ".item.artists[0].name + \" - \" + .item.name"); xdotool search --onlyvisible --name "Spotify" set_window --name "[Spotify] $NOW_PLAYING"

 

You can make it run every few seconds while Spotify is running. Et voilà! The most inefficient workaround possible. It would be nice if Spotify actually fixed Linux bugs sometimes so we wouldn't need to resort to unnecessarily querying the API. Or even better, open source the client and we would have fixed it ourselves months ago.

While using Spotify on an other PC I noticed that displaying the artist and title works fine when installing it as PWA via Chromium. The only problem I had was that Debians Chromium version does not ship with Widevine but this can be fixed the installing the .so file manually. As the the "native" Spotify app is only an Electron app I did not notice any limitations so far by using the PWA.

As of todayish, it seems to have been fixed

Suggested posts