views:

322

answers:

1

X11 maps keycodes to keysyms and then maps keysyms to Unicode. What's a good way to retrieve keysym to Unicode mappings in a program?

+1  A: 

Try this.

Electro
That's great! The same author has an easy to parse text file with those mappings which is what I used in my Python program.
joeforker