I was having an old issue crop up with my upgrade to 14.04. Every 5 minutes my screen would go black and if I left it the monitor shut down. This is not well defined in the Systems Settings, as you can spend all day looking at Power Management and Screen Savers as the cause. Turns out it is the Power Manager but to actually "see" it, you need to go into terminal and type;
$ xset q
Which returns;
The help says typing;
$ xset -dpms
will turn it off, but this only lasts for the one session.
This is my easy solution;
$ xset q
Which returns;
Code:
DPMS (Energy Star): Standby: 600 Suspend: 600 Off: 600 DPMS is Enabled
$ xset -dpms
will turn it off, but this only lasts for the one session.
This is my easy solution;
Comment