yet another DPMS fix, still trying to prevent the error handler - slock - My fancy fork of slock
HTML git clone git://git.drkhsh.at/slock.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit cc36050e44faa01b2783640ffb2323329d15f97d
DIR parent 049ccf9a906dd9d4b261d3e9bb4166eaadb62731
HTML Author: Anselm R Garbe <garbeam@gmail.com>
Date: Wed, 9 Apr 2008 23:42:19 +0100
yet another DPMS fix, still trying to prevent the error handler
Diffstat:
M slock.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
DIR diff --git a/slock.c b/slock.c
@@ -125,8 +125,10 @@ main(int argc, char **argv) {
/* main event loop */
while(running && !XNextEvent(dpy, &ev)) {
- if(len == 0 && DPMSCapable(dpy))
+ if(len == 0 && DPMSCapable(dpy)) {
+ DPMSEnabled(dpy);
DPMSForceLevel(dpy, DPMSModeOff);
+ }
if(ev.type == KeyPress) {
buf[0] = 0;
num = XLookupString(&ev.xkey, buf, sizeof buf, &ksym, 0);