| 1234567891011121314151617181920212223242526 | /* * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> * See LICENSE file for license details. */#include "wm.h"#include <X11/keysym.h>static Key key[] = {	KEYS};voidupdate_keys(){	unsigned int i, len;	KeyCode code;	len = sizeof(key) / sizeof(key[0]);	for(i = 0; i < len; i++) {		code = XKeysymToKeycode(dpy, key[i].keysym);		XUngrabKey(dpy, code, key[i].mod, root);		XGrabKey(dpy, code, key[i].mod, root, True, GrabModeAsync, GrabModeAsync);	}}
 |