Announcement

Collapse
No announcement yet.

Monitor keeps going to sleep, DPMS problems

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Monitor keeps going to sleep, DPMS problems

    I have an Asus monitor. It keeps going into sleep mode, about every 5 minutes or so, if there's no activity to keep it awake. I've shut off everything I could find. I went into Power Management > Energy Saving Settings, and unchecked all of the boxes. I checked the monitor's own menu, and found nothing. I even poked around the BIOS, and didn't find anything there, either.

    I have found that using
    Code:
    sudo xset -dpms
    works. I had it in Autostart as
    Code:
    xset -dpms
    (without the sudo) and that wasn't working. Will it work to just append sudo to it, and put it in Autostart? Or is there another way, that turns off DPMS permanently?

    #2
    Apparently, something is causing DPMS to get turned back on, too. The monitor just went to sleep again, and I ran
    Code:
    xset -q
    and DPMS was back on.

    Comment


      #3
      http://www.kubuntuforums.net/showthr...urns-Itself-On
      "A nation that is afraid to let its people judge the truth and falsehood in an open market is a nation that is afraid of its people.”
      – John F. Kennedy, February 26, 1962.

      Comment


        #4
        #!/bin/sh
        #
        # no sleep display

        xset -dpms;

        xset s off

        setterm -blank 0 -powerdown 0


        exit 0
        -----------------------------
        copy this into your favorite text editor and save it to /home/your user name/.kde/Autostart
        make it executable
        reboot

        Comment

        Working...
        X