This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # lista todas as teclas mapeadas | |
| xmodmap -pke | |
| # Para encontrar o keycode exato de uma tecla, use: | |
| xev | grep keycode # pressione a tecla desejada | |
| # keycode 91 = KP_Delete KP_Separator KP_Delete KP_Separator | |
| # xmodmap -e "keycode 91 = KP_Delete KP_Separator KP_Delete KP_Separator" | |
| # xmodmap -e "keycode 91 = KP_Separator period KP_Separator period" |