Type in your question below and we'll check to see what answers we can find...
Loading article...
Submitting...
If you couldn't find any answers in the previous step then we need to post your question in the community and wait for someone to respond. You'll be notified when that happens.
Simply add some detail to your question and refine the title if needed, choose the relevant category, then post.
Before we can post your question we need you to quickly make an account (or sign in if you already have one).
Don't worry - it's quick and painless! Just click below, and once you're logged in we'll bring you right back here and post your question. We'll remember what you've already typed in so you won't have to do it again.
Please see below the most popular frequently asked questions.
Loading article...
Loading faqs...
Please see below the current ongoing issues which are under investigation.
Loading issue...
Loading ongoing issues...
Operating System
Debian Testing (up2date)
Kernel 6.18.12+deb14-amd64
XFCE 4.20.1
Spotify 1:1.2.82.428.g0ac8be2b
My Question or Issue
Once a week on Mondays, I update my Laptop (my patchday) and since this week I don't receive any Desktop Notifications from Spotify (Show desktop notifications when the song changes) anymore.
My gut feeling tells me that this stopped working today, but it could also have stopped working on Monday. I'm not 100% sure.
Anyway, it does not work with the previous Spotify version (1:1.2.77.358.g4339a634) and with the newest/current version (1:1.2.82.428.g0ac8be2b). In addition, with the newest version the toggle "Show desktop notifications when the song changes" under settings => display is gone. This is very odd.
I can't find anything related to it for the moment. Does anyone encounter the same problem or can share some information about it?
I have the same issue. this seems like a stupid thing to A/B test so id guess its a bug instead.
same issue here
1. gentoo
2. premium
3. Spotify version 1.2.82.428.g0ac8be2b
I see this message on startup. Does this integration affect this?
❯ spotify --version
Neither gnome-integration-spotify nor spotify-tray are installed.
Launching spotify without systray integration.
Spotify version 1.2.82.428.g0ac8be2b, Copyright (c) 2026, Spotify Ltd
Would be nice, if someone of the developers could reach out and explain this. Could be a problem on our side or on server side, because the feature was removed.
confirming this as well. honestly it's such a basic (and already working!) feature so it would be great to have it back
I concur. This feature should be brought back if it was removed intentionally.
since it's probably not coming back, here's a script to get some working notifications (formatting is lost while pasting, sorry):
```
#!/usr/bin/env bash
# Monitor Spotify track changes via MPRIS and send notifications with album art.
# Requires: playerctl, libnotify (notify-send), curl
tmp_icon=""
cleanup() {
[[ -n "$tmp_icon" ]] && rm -f "$tmp_icon"
}
trap cleanup EXIT
playerctl --player=spotify --follow metadata --format $'{{artist}} - {{title}}\t{{mpris:artUrl}}' \
| while IFS=$'\t' read -r track art_url; do
[[ -z "$track" ]] && continue
icon="spotify"
if [[ -n "$art_url" ]]; then
if [[ "$art_url" == file://* ]]; then
icon="${art_url#file://}"
elif [[ "$art_url" == http* ]]; then
tmp_icon=$(mktemp /tmp/spotify-art-XXXXXX.jpg)
curl -sf -o "$tmp_icon" "$art_url" && icon="$tmp_icon"
fi
fi
notify-send --icon="$icon" --app-name=Spotify "Now Playing" "$track" --expire-time 10000
done
```
wrote:since it's probably not coming back, here's a script to get some working notifications (formatting is lost while pasting, sorry):
Thanks for this script! That's a pretty good workaround for now, at least for me. Doesn't change the fact that spotify needs to fix this.
i made a spotify sh file but get line 12: playerctl: command not found.... where do i put this file to run it etc?
nm i needed the playerctl installed... it works fine now 😛
Hey there you, Yeah, you! 😁 Welcome - we're glad you joined the Spotify Community! While you here, let's have a fun game and get…