Attempt to fix screenlock - only show led after screen is already locked

master
Miles Alan 4 years ago
parent 8ebf11f8bf
commit 41714c8c96
  1. 5
      programs/sxmo_screenlock.c

@ -150,8 +150,6 @@ main(int argc, char **argv) {
Display *dpy;
Screen *screen;
if (setuid(0))
die("setuid(0) failed\n");
if (!(dpy = XOpenDisplay(NULL)))
@ -160,9 +158,8 @@ main(int argc, char **argv) {
screen = XDefaultScreen(dpy);
XSync(dpy, 0);
getoldbrightness();
updatescreenon(1);
lockscreen(dpy, screen);
XSync(dpy, 0);
updatescreenon(1);
readinputloop(dpy, screen);
return 0;
}

Loading…
Cancel
Save