To pytanie jest podobne do:
https://askubuntu.com/questions/33751/making-any-key-into-a-modifier-key
Mam maszynę o niestandardowym układzie klawiatury (lenovo x1 carbon), w której klawisz CapsLock został zastąpiony przez Home, End. Jestem przyzwyczajony do mapowania CapsLock jako kontroli, więc użyłem xmodmap do mapowania strony głównej, End to Control:
xmodmap -e 'keycode 110 = Control_L' # Home
xmodmap -e 'keycode 115 = Control_L' # End
Gdy naciśniesz przycisk Home (lub End) sam, wykryty zostanie prawidłowy klucz:
state 0x0, keycode 110 (keysym 0xffe3, Control_L), same_screen YES,
Ale nie jestem w stanie użyć ponownie przypisanego klawisza Home lub End jako modyfikatora dowolnego innego klawisza: po naciśnięciu klawisza Control + a klawisz nie jest modyfikowany:
KeyPress event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15157752, (829,406), root:(830,407),
state 0x0, keycode 110 (keysym 0xffe3, Control_L), same_screen YES,
XKeysymToKeycode returns keycode: 37
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15157761, (829,406), root:(830,407),
state 0x0, keycode 38 (keysym 0x61, a), same_screen YES,
XLookupString gives 1 bytes: (61) "a"
XmbLookupString gives 1 bytes: (61) "a"
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15157912, (829,406), root:(830,407),
state 0x0, keycode 38 (keysym 0x61, a), same_screen YES,
XLookupString gives 1 bytes: (61) "a"
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15157949, (829,406), root:(830,407),
state 0x0, keycode 110 (keysym 0xffe3, Control_L), same_screen YES,
XKeysymToKeycode returns keycode: 37
XLookupString gives 0 bytes:
XFilterEvent returns: False
Natomiast jeśli użyję „prawdziwego” klawisza sterującego, naciśnięcie klawisza „a” ma stan modyfikatora kontrolnego:
KeyPress event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15160488, (829,406), root:(830,407),
state 0x0, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyPress event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15161477, (829,406), root:(830,407),
state 0x4, keycode 38 (keysym 0x61, a), same_screen YES,
XLookupString gives 1 bytes: (01) ""
XmbLookupString gives 1 bytes: (01) ""
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15161588, (829,406), root:(830,407),
state 0x4, keycode 38 (keysym 0x61, a), same_screen YES,
XLookupString gives 1 bytes: (01) ""
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x1000001,
root 0xe0, subw 0x0, time 15161842, (829,406), root:(830,407),
state 0x4, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
Czy w moim przypadku można skonfigurować klucz Home jako klawisz modyfikujący Control? Czy jest jakieś ograniczenie sprzętowe, które temu zapobiega?
źródło
/usr/share/X11/xkb/symbols/
katalogu. unix.stackexchange.com/questions/478315/…Odpowiedzi:
Oprócz dwóch poleceń musisz dodać Kontrolę :
xmodmap -e 'keycode 110 = Control_L' # Home
xmodmap -e 'keycode 115 = Control_L' # End
xmodmap -e 'add Control = Control_L'
źródło