왼쪽 및 오른쪽 Ctrl 키가 동일한 동작을 하도록 하고 싶습니다. 모든 단축키 등에서 왼쪽 클릭이 제대로 작동하지만 오른쪽 클릭은 전혀 효과가 없는 것 같습니다. 키보드 레이아웃 옵션을 살펴봤지만 소용이 없었습니다.
저는 Mate 데스크탑 환경에서 Linux Mint 20.2를 사용하고 있습니다.
-부록-
결과 xev
는 다음과 같습니다.
KeyPress event, serial 35, synthetic NO, window 0x5200001,
root 0x7ac, subw 0x5200002, time 416256, (49,43), root:(2600,505),
state 0x10, keycode 105 (keysym 0xff20, Multi_key), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: True
KeyRelease event, serial 38, synthetic NO, window 0x5200001,
root 0x7ac, subw 0x5200002, time 416464, (49,43), root:(2600,505),
state 0x10, keycode 105 (keysym 0xff20, Multi_key), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
출력은 xmodmap
다음과 같습니다.
xmodmap: up to 4 keys per modifier, (keycodes in parentheses):
shift Shift_L (0x32), Shift_R (0x3e)
lock Caps_Lock (0x42)
control Control_L (0x25)
mod1 Alt_L (0x40), Meta_L (0xcd)
mod2 Num_Lock (0x4d)
mod3
mod4 Super_L (0x85), Super_R (0x86), Super_L (0xce), Hyper_L (0xcf)
mod5 ISO_Level3_Shift (0x5c), Mode_switch (0xcb)
답변1
xmodmap -e "keycode 105 = Control_L NoSymbol Control_L"
답변2
귀하의 의견에서 확인했듯이 다음 두 xmodmap
명령이 트릭을 수행합니다.
xmodmap -e "keycode 105 = Control_R NoSymbol Control_R"
xmodmap -e "add control = Control_R"
재부팅 후에도 지속되지 않으므로 ~/.Xmodmap 파일에 따옴표로 묶은 텍스트를 저장하고 부팅 시 실행되도록 하면 됩니다.