I don't want Super + L (that is the windows key pressed with the L key) to lock my screen. I have disabled this in settings, but it still happens. How do I make this not happen?
Asked
Active
Viewed 5,096 times
2 Answers
9
You should be able to see what is the current setting by the command:
gsettings get org.gnome.desktop.lockdown disable-lock-screen
The output should be:
true
If it isn't, you can set it by the command:
gsettings set org.gnome.desktop.lockdown disable-lock-screen true
A cosmetic downside on my system is however that the screen doesn't lock any more, but still turns black for a second or so. You'll have to see if it works well on your system.

Jacob Vlijm
- 83,767
-
This does the trick. I assume that the answer is yes, but are these changes persistent? – kzh Oct 03 '14 at 18:18
-
-
@kzh on my system it is, let me know if it isn't, I'll make a workaround – Jacob Vlijm Oct 03 '14 at 18:20
-
@JacobVlijm Thanks for the offer, but I think that it is persistent and if not, I am sure I can come up with something. – kzh Oct 03 '14 at 18:24
-
This is only a half-way solution. The black screen is not helpful. What worked (in 16.04 LTS) was disabling the shortcut through the Compiz config: https://stackoverflow.com/a/26224554/200987 – oligofren May 29 '17 at 10:23
-
This solution caused my computer to remain UNLOCKED when resuming from sleep, even though I have set it to be password protected. So, in my case, this solution is unacceptable. – Gino Aug 13 '18 at 16:00
5
A fix on Ubuntu 16.04 that does not turn your screen black is disabling the key setting using the Compiz configuration manager. Turns out it is not Gnome, but Compiz, that captures the key combo. This is why disabling the shortcut does not work. This Stack Overflow question covers how to do it.
The package is called compizconfig-settings-manager
and I only managed to find it using the GUI app launcher. To reproduce the steps here:
- Install and run CompizConfig Settings Manager
- Click "Ubuntu Unity Plugin"
- Click the button next to "Key to lock the screen."
- Disable

oligofren
- 630
- 1
- 9
- 22
-
Works great without the black screen flash! next I just need to find out what it is setting so I can just configure it via vim or emacs or from the command line – Silfheed Jul 24 '18 at 19:10
gsettings get org.gnome.desktop.lockdown disable-lock-screen
? I can disable it bygsettings set org.gnome.desktop.lockdown disable-lock-screen true
, but the screen still turns black for a while... – Jacob Vlijm Oct 03 '14 at 16:55