Thinkpadラップトップでは、戻る/進むキーを別のキーに簡単に変更できます(通常はPageDown / PageUpにマップします)。これは、独自のキーコード(166および167)を持っているためです。
xmodmap -e 'keycode 166=Prior'
xmodmap -e 'keycode 167=Next'
しかし、私のThinkpad USBキーボードでは、戻る/進むキーがそれぞれAlt + LeftおよびAlt + Rightにハードマップされているように見えるため、xmodmapを使用してそれらを再マップすることはできません。それらを再マッピングできる他の方法はありますか?私はすでにxautomationを試しましたが、うまくいきませんでした。
これは、Forwardキーを押したときに「xev」が表示するものです。
KeyPress event, serial 36, synthetic NO, window 0x4e00001,
root 0xb4, subw 0x0, time 65023191, (16,-20), root:(641,33),
state 0x0, keycode 64 (keysym 0xffe9, Alt_L), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 36, synthetic NO, window 0x4e00001,
root 0xb4, subw 0x0, time 65023191, (16,-20), root:(641,33),
state 0x8, keycode 114 (keysym 0xff53, Right), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x4e00001,
root 0xb4, subw 0x0, time 65023271, (16,-20), root:(641,33),
state 0x8, keycode 64 (keysym 0xffe9, Alt_L), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x4e00001,
root 0xb4, subw 0x0, time 65023271, (16,-20), root:(641,33),
state 0x0, keycode 114 (keysym 0xff53, Right), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
1
キーにキーコードがある場合、それらは正しく再マッピングできますか?Caps Lockキーと何が違うのですか?このページはそれをうまく再マップしているようです。私はそれを試していません。提案しています。efod.se/writings/linuxbook/html/caps-lock-to-ctrl.html
—
Bibhas
問題は、キーコードがなく、代わりにalt-left / alt-rightに
—
固定されていることです