X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/2ffdc1936cf13af5df0cc6d9415961dbe13b9cf8..78b050c13c8ea660ed801c21bddd2957a2bc3f40:/event.c?ds=sidebyside diff --git a/event.c b/event.c index 881d41a..5c21fcb 100644 --- a/event.c +++ b/event.c @@ -144,11 +144,11 @@ buttonpress(XEvent *e) static void configurerequest(XEvent *e) { + unsigned long newmask; Client *c; XConfigureRequestEvent *ev = &e->xconfigurerequest; XEvent synev; XWindowChanges wc; - unsigned long newmask; if((c = getclient(ev->window))) { gravitate(c, True); @@ -276,6 +276,16 @@ leavenotify(XEvent *e) } } +static void +mappingnotify(XEvent *e) +{ + XMappingEvent *ev = &e->xmapping; + + XRefreshKeyboardMapping(ev); + if(ev->request == MappingKeyboard) + grabkeys(); +} + static void maprequest(XEvent *e) { @@ -348,6 +358,7 @@ void (*handler[LASTEvent]) (XEvent *) = { [LeaveNotify] = leavenotify, [Expose] = expose, [KeyPress] = keypress, + [MappingNotify] = mappingnotify, [MapRequest] = maprequest, [PropertyNotify] = propertynotify, [UnmapNotify] = unmapnotify @@ -360,6 +371,7 @@ grabkeys() unsigned int i; KeyCode code; + XUngrabKey(dpy, AnyKey, AnyModifier, root); for(i = 0; i < len; i++) { code = XKeysymToKeycode(dpy, key[i].keysym); XGrabKey(dpy, code, key[i].mod, root, True,