Como trocar ctrl e caps lock usando xmodmap

10

Ou qualquer outra ferramenta, mas eu prefiro o xmodmap. Eu tentei isso:

remove Lock = Caps_Lock
remove Control = Control_L
keysym Control_L = Caps_Lock
keysym Caps_Lock = Control_L
add Lock = Caps_Lock
add Control = Control_L

Eu também tentei isso:

xmodmap -e "keycode 66 = Control_L"

Mas nenhum deles parece funcionar totalmente. Aqui está o log de eventos para pressionar o caps lock:

KeyPress event, serial 28, synthetic NO, window 0x1a00001,
root 0x12d, subw 0x0, time 914826, (679,342), root:(680,362),
state 0x12, keycode 66 (keysym 0xffe3, Control_L), same_screen YES,
XKeysymToKeycode returns keycode: 37 // 37 is the control key code
XLookupString gives 0 bytes: 
XmbLookupString gives 0 bytes: 
XFilterEvent returns: False

Estou executando o Ubuntu 10.10 com um gerenciador de janelas incrível.

    
por Maruti 08.04.2011 / 13:57

2 respostas

8

De Remap Caps Lock :

man xmodmap shows how to swap the left control key and the CapsLock key:

!
! Swap Caps_Lock and Control_L
!
remove Lock = Caps_Lock
remove Control = Control_L
keysym Control_L = Caps_Lock
keysym Caps_Lock = Control_L
add Lock = Caps_Lock
add Control = Control_L
    
por 08.04.2011 / 14:20
14

Isso pode funcionar para você.

/usr/bin/setxkbmap -option "ctrl:swapcaps"
    
por 12.06.2012 / 18:09