applied somwhat similiar patch like Alex Elide proposed
This commit is contained in:
parent
6e53ce4582
commit
8a7a68c4c0
1 changed files with 6 additions and 3 deletions
9
slock.c
9
slock.c
|
@ -77,9 +77,12 @@ main(int argc, char **argv) {
|
|||
XDefineCursor(dpy, w, invisible);
|
||||
running = XGrabPointer(dpy, RootWindow(dpy, screen), False,
|
||||
ButtonPressMask | ButtonReleaseMask | PointerMotionMask,
|
||||
GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess
|
||||
&& XGrabKeyboard(dpy, RootWindow(dpy, screen), True, GrabModeAsync,
|
||||
GrabModeAsync, CurrentTime) == GrabSuccess;
|
||||
GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess;
|
||||
len = 10;
|
||||
for(len = 10; len && (XGrabKeyboard(dpy, RootWindow(dpy, screen), True, GrabModeAsync,
|
||||
GrabModeAsync, CurrentTime) != GrabSuccess); len--)
|
||||
usleep(1000);
|
||||
running = running && (len > 0);
|
||||
XMapRaised(dpy, w);
|
||||
XSync(dpy, False);
|
||||
|
||||
|
|
Loading…
Reference in a new issue