Topic: HowTo: Fully disable screensaver/screen blanking
Just in case somebody wants to turn of blanking of the screen (beyond disabling the screensaver) here is a failsafe
method:
- edit your autostart and add
xset -dpms &
xset s noblank &
xset s off &- if you have an xorg.conf file, edit it as root and add in the section "ServerLayout":
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"and in the section "Monitor":
Option "DPMS"where you can alternatively just add:
Option "NODPMS"without the aforementioned ServerLayout options
Last edited by machinebacon (2011-07-06 08:27:42)