File: keysyms.h.info

package info (click to toggle)
kbd 2.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,964 kB
  • sloc: ansic: 13,897; javascript: 3,038; sh: 1,973; pascal: 643; makefile: 602; lex: 532; yacc: 354; perl: 126
file content (9 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
jrv@vanzandt.mv.com (Jim Van Zandt) writes:

I have found that I can construct the definitions of
the keysyms with the command

dumpkeys --long-info | awk '/^0x0000/, /^$/ {
        if(/^$/) exit;
        printf("#define KS_%-22s %s\n", $2, $1);
}' >keysyms.h