多个按键映射到同一个按键

多个按键映射到同一个按键

所以我遇到了这个问题,我买了一个第三方键盘,但 Linux 无法正确确定整个布局。目前,L/R Control、L/R Alt 和“Windows”键都映射到 Shift_L。我试图弄清楚是否可以使用它们在键盘上的位置重新映射它们。查看其他类似问题时,我使用了 xev,并发现了以下信息:

左控制
KeyRelease事件,序列37,合成NO,窗口0x3a00001,
    root 0x49a, subw 0x0, 时间 4433091, (78,36), root:(1423,88),
    状态 0x11,键码 50 (键符 0xffe1,Shift_L),same_screen 是,
    XLookupString 给出 0 个字节:
    XFilterEvent 返回:False

KeyRelease事件,序列37,合成NO,窗口0x3a00001,
    root 0x49a, subw 0x0, 时间 4485817, (4,134), root:(1349,186),
    状态 0x11,键码 50 (键符 0xffe1,Shift_L),same_screen 是,
    XLookupString 给出 0 个字节:
    XFilterEvent 返回:False

R 控制
KeyRelease事件,序列37,合成NO,窗口0x3a00001,
    root 0x49a, subw 0x0, 时间 4513012, (83,62), root:(1428,114),
    状态 0x11,键码 50 (键符 0xffe1,Shift_L),same_screen 是,
    XLookupString 给出 0 个字节:
    XFilterEvent 返回:False

右键
KeyRelease事件,序列37,合成NO,窗口0x3a00001,
    root 0x49a, subw 0x0, 时间 4532271, (69,151), root:(1414,203),
    状态 0x11,键码 50 (键符 0xffe1,Shift_L),same_screen 是,
    XLookupString 给出 0 个字节:
    XFilterEvent 返回:False

视窗
KeyRelease事件,序列37,合成NO,窗口0x3a00001,
    root 0x49a, subw 0x0, 时间 4560554, (120,27), root:(1465,79),
    状态 0x11,键码 50 (键符 0xffe1,Shift_L),same_screen 是,
    XLookupString 给出 0 个字节:
    XFilterEvent 返回:False

我想知道每段文本第二行“time ####”后面括号里的数字是否代表按键的位置?如能得到帮助我将不胜感激!

相关内容