Como trocar as teclas Alt com AltGr?

5

Eu gostaria de usar a tecla AltGr como minha principal tecla Alt . Infelizmente, o AltGr não se comporta como a tecla Alt Alt com o software que eu uso, por exemplo. urxvt .

Com o comando xev , a tecla esquerda Alt tem o código de teclas 64 , e o AltGr tem o código-chave 108 .

$ xmodmap -pke me fornece o seguinte resultado para a tecla esquerda Alt e as teclas à direita AltGr :

keycode  64 = Alt_L Meta_L Alt_L Meta_L
keycode 108 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift

Para ser breve, eu gostaria de trocar a tecla esquerda Alt , com a tecla AltGr .

Estou usando o servidor 14.04.

    
por Li Nux 29.11.2015 / 22:37

1 resposta

6

Encontrei a solução sozinho: -)

$ xmodmap .Xmodmap . O arquivo .Xmodmap deve conter o seguinte:

'

! Swap Mod1 and Mod5 ! remove Mod1 = Alt_L Meta_L Alt_L Meta_L remove Mod5 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift keysym Alt_L Meta_L Alt_L Meta_L = ISO_Level3_Shift NoSymbol ISO_Level3_Shift keysym ISO_Level3_Shift NoSymbol ISO_Level3_Shift = Alt_L Meta_L Alt_L Meta_L add Mod1 = Alt_L Meta_L add Mod5 = ISO_Level3_Shift

    
por Li Nux 29.11.2015 / 23:53