pplied Sanders appendtag patch
Anselm R.Garbe arg@10ksloc.org
Mon, 14 Aug 2006 15:31:58 +0200
M
event.c
→
event.c
@@ -4,6 +4,7 @@ * See LICENSE file for license details.
*/ #include "dwm.h" #include <stdlib.h> +#include <unistd.h> #include <X11/keysym.h> #include <X11/Xatom.h>@@ -359,6 +360,11 @@ {
static unsigned int len = sizeof(key) / sizeof(key[0]); unsigned int i; KeyCode code; + + while(XGrabKeyboard(dpy, root, True, GrabModeAsync, + GrabModeAsync, CurrentTime) != GrabSuccess) + usleep(1000); + XUngrabKeyboard(dpy, CurrentTime); for(i = 0; i < len; i++) { code = XKeysymToKeycode(dpy, key[i].keysym);