18 lines
802 B
Text
18 lines
802 B
Text
## Disable Xorg's built-in screen blanking and DPMS power management.
|
|
##
|
|
## Operator-USB rationale: the live image is a tool the operator sits in
|
|
## front of and works in. A blank screen after 10 minutes of idle is a
|
|
## papercut at best; on some hardware the DPMS-off → wake path doesn't
|
|
## return the pointer cleanly and the session appears hung. Suppressing
|
|
## the timers at the X server level catches every session including the
|
|
## SDDM greeter, before any per-user xset / xprofile can run.
|
|
##
|
|
## A session-level xset fallback in ~clawdie/.xprofile is the
|
|
## belt-and-suspenders in case a future X server build ignores one of
|
|
## these options.
|
|
Section "ServerFlags"
|
|
Option "BlankTime" "0"
|
|
Option "StandbyTime" "0"
|
|
Option "SuspendTime" "0"
|
|
Option "OffTime" "0"
|
|
EndSection
|