내 Thinkpad 랩톱에서 Back / Forward 키를 다른 키 코드로 쉽게 변경할 수 있습니다 (보통 PageDown / PageUp에 매핑). 키 코드 (166 및 167) :
xmodmap -e 'keycode 166=Prior'
xmodmap -e 'keycode 167=Next'
그러나 Thinkpad USB 키보드에서 Back / Forward 키는 각각 Alt + Left 및 Alt + Right로 하드 매핑 된 것처럼 보이므로 xmodmap을 사용하여 다시 매핑 할 수 없습니다. 다시 매핑 할 수있는 다른 방법이 있습니까? 이미 xautomation을 시도했지만 작동하지 않았습니다.
앞으로 키를 누르면 '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
키에 키 코드가있는 경우 다시 매핑 할 수 있습니까? 캡 잠금 키와 다른 것이 있습니까? 이 페이지는 잘 보인다. 나는 그것을 시도하지 않았습니다. 그냥 제안합니다. efod.se/writings/linuxbook/html/caps-lock-to-ctrl.html
—
Bibhas
문제는 정확히 키 코드가없고 대신 왼쪽 / 오른쪽 오른쪽으로 배선 된 것입니다
—
Guilherme Salgado