Disable screen blank in X: Difference between revisions

From RSWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{AdWords}}
== Disable your X server from blanking the screen ==
When watching DVD's or whatever on your machine, you may find that Xorg blanks the screen after 10 minutes of inactivity.
When watching DVD's or whatever on your machine, you may find that Xorg blanks the screen after 10 minutes of inactivity.


Line 10: Line 14:
  EndSection
  EndSection


 
{{AdWords2}}
[[Category:Linux| ]]
[[Category:Linux| ]]

Revision as of 18:59, 15 January 2008

Template:AdWords

Disable your X server from blanking the screen

When watching DVD's or whatever on your machine, you may find that Xorg blanks the screen after 10 minutes of inactivity.

To disable this simply add the following to your xorg.conf

Section "ServerFlags"
    Option        "blank time" "0"
    Option        "standby time" "0"
    Option        "suspend time" "0"
    Option        "off time" "0"
EndSection

Template:AdWords2