You are not logged in.
I'm running an application that outputs keyboard event keycodes from X11, and I'm trying to capture the Print Screen keycode, which outputs as "KeyPress: 6b". I'm unsure how to find its correlating entry in the <X11/keysymdef.h> (or XF86keysym.h) headers with that value. I apologize if it's something obvious, but I can't find it.
Last edited by bscore (2022-07-03 02:56:01)
Offline
I suggest to simply run "xev -event keybord" instead of "an application".
But XK_Print is 0xff61 and that's what you're looking for.
Offline
@Seth that method is much easier, and has helped me identify all the other keys I've been questioning. Thank you!
Offline