xremapで使うキーコードを調べる
code: python
import evdev
# デバイスのevent番号は
# cat /proc/bus/input/devices などで調べる
device = evdev.InputDevice("/dev/input/event5")
for event in device.read_loop():
if event.type == evdev.ecodes.EV_KEY:
# 0: up, 1: down
if event.value == 1:
print(key)