Blame docs/doc/keysyms.h.info

Packit Service 50ad14
jrv@vanzandt.mv.com (Jim Van Zandt) writes:
Packit Service 50ad14
Packit Service 50ad14
I have found that I can construct the definitions of
Packit Service 50ad14
the keysyms with the command
Packit Service 50ad14
Packit Service 50ad14
dumpkeys --long-info | awk '/^0x0000/, /^$/ {
Packit Service 50ad14
        if(/^$/) exit;
Packit Service 50ad14
        printf("#define KS_%-22s %s\n", $2, $1);
Packit Service 50ad14
}' >keysyms.h