I had Spotify running in fullscreen mode on a second monitor when I closed it and unplugged my laptop. Now Spotify starts in fullscreen mode and I am unable to exit it. Using F11 just skips the current song.
7 Answers
Minimally invasive fix without dependencies for simple copy & paste - 2023
Regular installation (RPM / DEB)
- Close Spotify
- Run
sed -i "/\b\(app.window.position\)\b/d" -- $HOME/.config/spotify/prefs
- Run Spotify
Flatpak installation
- Close Spotify
- Run
sed -i "/\b\(app.window.position\)\b/d" -- $HOME/.var/app/com.spotify.Client/config/spotify/prefs
- Run Spotify
Snap installation
- Close Spotify
- Run
sed -i "/\b\(app.window.position\)\b/d" -- $HOME/snap/spotify/current/.config/spotify/prefs
- Run Spotify
(Thanks to @MrFuppes for the Snap instructions)
Source for sed command: How to remove lines from the text file containing specific words through terminal?
Btw: This is not Ubuntu-Specific, I'm on Fedora Linux.

- 946
-
3also works with the snap version;
sed -i "/\b\(app.window.position\)\b/d" -- $HOME/snap/spotify/current/.config/spotify/prefs
– FObersteiner Sep 21 '21 at 18:23
I've had this issue for a while now, and @Sadaharu Wakisaka commented that for someone, it's already resolved by deleting $HOME/.config/spotify
, but for me, with the snap version, I had to delete $HOME/snap/spotify/current/.config/spotify
while Spotify was not running, and then sign in again
EDIT!
There's a better solution which solves the issue without deleting the file. Do not delete the file unless no other solution works for you

- 109
-
2No need to kill everything with fire, just remove the lines containing
app.window.position
from from theprefs
file. See my answer on how to do that with sed. Should work with snaps, too, if you adjust the file path. – dreua Apr 11 '21 at 11:28 -
This action will erase ALL configuration for the app. Most likely, none of your shortcuts will work afterward! – Nate T Aug 02 '21 at 07:56
-
This is a panic response and shouldn't have as many upvotes as it does.
Reluctant to give it a downvote as it will fix the issue, but it will likely cause other issues too.
– Tisch Feb 17 '22 at 15:08 -
I've updated my answer to avoid people preferring my solution, because you're completely right, @Tisch, it was a "panic" solution which did work – Lasse Brustad Nov 24 '22 at 13:04
I pulled out a simple script that can toggle fullscreen on Spotify. It uses wmctrl
, but since the other answer uses window title to specify the window and it didn't work out in my system, I used xwininfo
to manually resolve a window ID of Spotify.
It's a one-liner, which is following:
xwininfo -root -tree | grep '("spotify" "Spotify")' | grep -oE '(0x[0-9a-z]{7,8})' | xargs -I % wmctrl -i -r % -b toggle,fullscreen
It grabs info of every window on system, grab spotify's window ID using couple grep
commands, and shoves it into wmctrl command.
It should work regardless of distro as long as you have xwininfo
installed, I use this on Fedora Cinnamon spin.

- 71
- 1
- 1
-
I also needed to install wmctrl(
sudo apt install wmctrl
) but this answer did help. Thank you – Ivaylo Strandjev Oct 20 '22 at 09:37
Please follow the steps below to exit Full Screen on Spotify:
Open a Terminal window and install wmctrl:
sudo apt install wmctrl
While Spotify is running, pause the music and run the following command:
wmctrl -r spotify -b toggle,fullscreen
It should go back to windowed mode and you may keep playing your music ;)

- 51
-
For me the
toggle
option did not work, butwmctrl -r spotify -b remove,fullscreen
did, using Ubuntu 21.04 with spotify snap package. – Kristian Jul 28 '21 at 08:04 -
It depends if you have installed spotify through snap. In my case, I had installed spotify in snap. In this case:
Goto spotify in snap folder. Notice the number 42 may change so use ls to know what number is in your case.
cd snap/spotify/42/.config/spotify
Then edit the preferences file:
gedit prefs
Set the number for app.window.position.width to a different value. It worked for me the value as reported in this thread Full-screen-under-Ubuntu-18-04 which is
1320
.app.window.position.width=1320
Save changes and start spotify. It should not be in full screen.

- 19,615
- 55
- 79
- 83

- 121
-
wmctrl
did not work for me. This worked like a charm on Ubuntu 20.04.2 LTS, Spotify version 1.1.55.498.gf9a83c60. – Sunanda Mar 23 '21 at 15:01 -
-
@MitaliCyrus That is because it sounds like the app isn't in fullscreen. It is just configured to be bigger than the screen. This can be fixed with
wmctrl
but with a different sub-command. – Nate T Aug 02 '21 at 08:03
I just went into my files, showed hidden files, went into the Spotify folder, opened prefs under .config/spotify and changed app.window.position.saved=true to app.window.position.saved=false after the other things didn't helpt. idk but it seems to have worked

- 11
Are you using an app or extension that forces applications to open full-screen? I use one on my Fedora 24 for WXChat that lets me put apps on a specific screen and position, including full screen. one-liner solution:
sed -i -E -e 's|(^app.window.position.saved)=true|\1=false|'
-e 's|(^app.window.position.height)=.|\1=920|'
-e 's|(^app.window.position.width)=.|\1=1200|'
.var/app/com.spotify.Client/config/spotify/prefs
wmctrl
if you dont know what the process is called you can first dowmctrl -l
– Jesse de gans May 02 '23 at 13:02