[core/layout] use python-only layout detection
remove precompiled binary and make the layout module fall back to the python implementation. fixes #883
This commit is contained in:
parent
326e2f9318
commit
6f4f163a7d
3 changed files with 1 additions and 78 deletions
|
@ -1,39 +0,0 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <X11/XKBlib.h>
|
||||
|
||||
void err_if(int condition, const char* msg)
|
||||
{
|
||||
if (condition) {
|
||||
fprintf(stderr, "fatal: %s\n", msg);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
Display* display = XOpenDisplay(NULL);
|
||||
err_if(!display, "unable to open display");
|
||||
|
||||
int kbd = argc == 1 ? XkbUseCoreKbd : atoi(argv[1]);
|
||||
|
||||
XkbStateRec state;
|
||||
XkbGetState(display, kbd, &state);
|
||||
|
||||
XkbDescPtr desc = XkbGetKeyboard(display, XkbAllComponentsMask, kbd);
|
||||
char* symbols = XGetAtomName(display, desc->names->symbols);
|
||||
printf("%s\n", symbols);
|
||||
|
||||
#if 0
|
||||
char *group = XGetAtomName(display, desc->names->groups[state.group]);
|
||||
XFree(group);
|
||||
#endif
|
||||
XFree(symbols);
|
||||
XFree(desc);
|
||||
|
||||
XCloseDisplay(display);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue