tentando remapear f9 para inserir a chave

3

Eu tenho um pequeno laptop que não tem um teclado completo e gostaria de inserir com Shift + Inserir para inserir a partir da área de transferência do X mas não o faço t tem uma chave Insert . Então eu imaginei apenas procurar o código para F9 com xev (era 75) e apenas remapear a chave com xmodmap da seguinte maneira:

xmodmap -e "keycode 75 = Insert"

que deve funcionar, mas não funcionou. Então estou preso agora. Alguém poderia me ajudar?

    
por susumoa 04.09.2016 / 17:36

1 resposta

3

Você deve adicionar pelo menos uma coluna.

# set Key and Shift+Key
xmodmap -e "keycode 75 = Insert Insert"
# set all
xmodmap -e "keycode 75 = Insert Insert Insert Insert Insert Insert"

Each keycode is followed by the keysym it is mapped to. The above example indicates that the keycode 57 is mapped to the lowercase n, while the uppercase N is mapped to keycode 57 plus Shift.

Each keysym column in the table corresponds to a particular combination of modifier keys:

1. Key
2. Shift+Key
3. mode_switch+Key
4. mode_switch+Shift+Key
5. AltGr+Key
6. AltGr+Shift+Key

- link

    
por 04.09.2016 / 18:18

Tags