2

I want to keep energy saving (12 minutes) but don't like the lock screen with the watch, whenever I come back. This two things unfortunately seem interlinked in Gnome.

Settings

How can I get rid of the watch screen / curtain?

empedokles
  • 3,883
  • 15
  • 46
  • 68
  • So you just want the screen off after certain amount of time, but no locking, is that right ? Just disable GNOME settings and use while true; do [ $(xprintidle) -ge 300000 ] && xset dpms force off ; sleep 1 ; done The xprintidle is separate package so you'll need to install that with apt , and outputs number in milliseconds, so that's 300 seconds there or 5 mins. Let me know if you want this as full and automated answer. – Sergiy Kolodyazhnyy Sep 29 '18 at 10:01
  • I'm not sure if it's locking, it's a needless full screen watch I have to click away by keyboard input. Where would that command go? – empedokles Sep 29 '18 at 17:34
  • This command would be started through a .desktop file. The way autostart works on GNOME or any other GNOME-based desktop ( like Unity or Mate ) is by placing such file into ~/.config/autostart directory. The GUI tools like Startup Applications just do that behind the scenes, so there's no difference. As for that clock thing, disabling is done via methods described in https://askubuntu.com/q/970900/295286 – Sergiy Kolodyazhnyy Sep 29 '18 at 18:08
  • @starkus: this option is already disabled. – empedokles Sep 30 '18 at 16:46
  • @SergiyKolodyazhnyy Not sure if they are talking about the same problem, I want to get rid of the watch (not sure if it's a lock screen) and these options are for 17.10 as far as I see. – empedokles Sep 30 '18 at 17:00
  • 2
  • 1
    @starkus : So far it does work on 18.04. – empedokles Oct 12 '18 at 12:52

1 Answers1

2

Lots of people are annoyed by this "Screen Shield" or "Curtain" or "Swipe to Unlock" as it is can be called. This Ask Ubuntu question has 33 up-votes: How to remove "phone style" Gnome swipe to unlock

The answer with the most votes states:

Open Ubuntu Software and install the GNOME Shell Extension called:

Disable Screen Shield

This works for Ubuntu 18.04

Source: Disable Screen Shield

enter image description here

Note most users say it works with 18.04, but one commented it doesn't work. It could just be s/he didn't install it correctly.

  • Nobody says it works, but it seems to work at least on my machine, so I'm going to give you the award. On Github there are users who complain it won't work: https://github.com/lgpasquale/gnome-shell-extension-disable-screenshield/issues . It probably was not such a good move from Ubuntu to leave Unity behind. – empedokles Oct 12 '18 at 12:51