Page 1 of 1

Screen blank on idle

Posted: Mon Oct 11, 2010 8:29 am
by virtualmix
Dear LMDE people!

If I don't move the mouse or press a key, my display get blank after a few minutes.
I have deactivated all options in Gnome Screen Saver and Power Management preferences but it's not making any differences, my screen still blank on idle.

Screenshot:
Image

Any suggestion welcome.

Thank you.

Re: Screen blank on idle

Posted: Mon Oct 11, 2010 10:08 am
by craigevil
Try disabling DPMS in your xorg.conf

Section "Device"
Option "DPMS" "FALSE"
EndSection

You can also use xset to disable it until you reboot.

Code: Select all

bash$ xset -dpms            # Disable DPMS
bash$ xset +dpms            # Enable DPMS
bash$ xset s off            # Disable screen blanking
bash$ xset s 150            # Blank the screen after 150 seconds
bash$ xset dpms 300 600 900        # Set standby, suspend, & off times (in seconds)
bash$ xset dpms force standby        # Immediately go into standby mode
bash$ xset dpms force suspend        # Immediately go into suspend mode
bash$ xset dpms force off        # Immediately turn off the monitor
bash$ xset -q                # Query current settings

Re: Screen blank on idle

Posted: Mon Oct 11, 2010 11:03 am
by virtualmix
Thanks a lot for your answer.

DPMS was activated in my xorg.conf so disabling it should solve my problem.

I'm discovering xset at the same time... Very useful.

Thanks again for your help.
See ya!

Re: Screen blank on idle

Posted: Tue Jul 26, 2011 10:06 am
by linfreeman
I tried your suggestion:

Try disabling DPMS in your xorg.conf

Section "Device"
Option "DPMS" "FALSE"
EndSection

The result was that my machine will no longer boot!

Re: Screen blank on idle

Posted: Thu Jul 28, 2011 3:07 pm
by cdysthe
I had this problem on two laptops. I simply added a Control Center > Startup Application entry containing the command "xset s off" I called "Prevent Screen Blanking". It's run every time I log in and keeps the screen on.