I am using Ubuntu 15.10. I accidentally changed the size of the interface to maximum. Now my folders and windows are too large and don't fully fit the screen so I cannot revert the effect. Is there any way to reset the display settings to default so this can revert to normal?
5 Answers
Removing ~/.config/monitors.xml
should do it:
- Open a terminal window by pressing Ctrl+Alt+T
- type
rm ~/.config/monitors.xml
and press Enter - immediately log out and back in. It should be reverted now
Alternatively
If you know what resolution your screen supports (e.g. 1440x900
), you can run the command:
xrandr -s 1440x900
to at least temporarily set a workable solution, then subsequently change settings from GUI.

- 83,767
I had a similar problem to you but I found the solution here How to scale title bars and menu in Ubuntu 14.04 with the terminal only
dconf reset /com/ubuntu/user-interface/scale-factor
This changes the "scale for menu and title bars" to default.
Just to add to this, since this is the first thread that appeared for me: My solution to reset the display was to use:
xrandr --listactivemonitors

- 142
- 6
-
2
-
If you unplug an external monitor and display doesn't reset, running this will reset the monitor config. – Eurospoofer Jul 15 '20 at 09:33
In KDE all monitors are scaled together in ~/.config/kwinrc
[Effect-zoom]
InitialZoom=1.23

- 1
Just rebooting can fix it, but it depends on what caused the change.
Before you fiddle with settings, reboot and see if the resolution reverts to the correct setting.

- 659
~/.config/monitors.xml
. There is no way these settings are remembered if you remove the file and immediately log out, unless you must have done something exotic. – Jacob Vlijm Mar 23 '16 at 14:24Ctrl-Alt-Backspace
shortcut. You could removemonitors.xml
and restart GUI right away using this shortcut. Unfortunately is disabled by default. You need to runsudo dpkg-reconfigure keyboard-configuration
and answer yes when prompted to enable this shortcut. – gerlos Feb 07 '19 at 15:59monitors.xml
did the trick. – Kosta Jun 12 '19 at 12:00~
, but under/home/yourusername
instead – Jules Colle May 15 '20 at 18:53