added key handling
This commit is contained in:
parent
8a8b7956b6
commit
366d81e313
5 changed files with 44 additions and 30 deletions
26
key.c
Normal file
26
key.c
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* (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
|
||||
};
|
||||
|
||||
void
|
||||
update_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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue