I disabled my key using xmodmap. How do I enable it? The command I executed was:
xmodmap
`xmodmap -e 'keycode 16='`
Any help will be appreciated.
xmodmap -e 'keycode 16=X'
X
To re-enable the 7 and the & keys, run this:
7
&
xmodmap -e 'keycode 16=7 ampersand'
xmodmap -e 'keycode 16=X'
, whereX
is the key you want to remap? – Aug 06 '16 at 07:12