60

Exactly what the title asks. How do I clear xmodmap settings?

I have an IBM model M, and somehow xkeycaps got it into its head that my End key was not any key at all. xev reports keypresses when I use it, so I know the event is being generated by the keyboard. Also, xkeycaps thinks that my arrow keys are all wonky, and apparently the scrollbar is broken so it only scrolls down - so I can't scroll up to find an IBM keyboard that just maybe is close to my map so I can fix my keys.

So I'm trying to reset my keyboard to the default settings, but the xmodmap manpage is woefully devoid of "reset all" or "clear all" or anything of that nature (that I was able to find).

guntbert
  • 13,134
Wayne Werner
  • 6,712

5 Answers5

88

xmodmap has no notion of state, so it has no way to reset state directly. You can simulate it by using xmodmap -pke >.xmodmap.orig before making any changes (although it doesn't save the modifier map, which you would have to save and restore manually) — but it's a bit too late for that.

Modern systems don't generally use xmodmap to configure the keyboard, though. setxkbmap is the modern way to do it; and that does reset bindings when run. So you may be able to use setxkbmap -layout us to reset things to normal. More complete would be to check for the default configuration in /etc/X11/xorg.conf. For example, on my system

jinx:718 Z$ sed -n '/Identifier.*Keyboard/,/EndSection/p' /etc/X11/xorg.conf
        Identifier      "Generic Keyboard"
        Driver  "kbd"
        Option  "XkbModel"      "pc105"
        Option  "XkbLayout"     "us"
        Option  "XkbOptions"    "grp:alt_shift_toggle"
EndSection

The corresponding command is

setxkbmap -model pc105 -layout us -option grp:alt_shift_toggle

If there were an XkbVariant entry in the output, you would pass its value with -variant. One thing to watch out for is that options are handled specially: you can only set one option per -option parameter, and you need to use -option '' to reset parameters first. So to fully reset when there is something like XkbOptions "grp:alt_shift_toggle,grp:ctrls_toggle" you would need

setxkbmap -model pc105 -layout us -option '' -option grp:alt_shift_toggle -option grp:ctrls_toggle
geekosaur
  • 11,597
  • 41
    setxkbmap -layout us has reset my keys, thank you! – Dan Nov 08 '11 at 13:20
  • 9
    Another very helpful option I discovered is setxkbmap -query to print out the current settings in xkb's format, which helped me to configure my Apple keyboard as desired from the terminal. – metakermit Jul 21 '13 at 11:39
  • 1
    careful with that command of setxkbmap -layout us as it will restore the us layout for every language support you have. For instance my french key layout along with my english key layout turns to be qwerty insteady of azerty.. – vdegenne Apr 02 '18 at 12:08
  • This question is about xmodmap not xkb. These applications are conflicting, and if your system does use xmodmap (as does modern Ubuntu) you may get confused after using the xkb reset command and then attempt to modify key bindings in xmodmap (as I did) – Michael Fulton May 15 '18 at 17:40
37

setxkbmap -option resets the meta keys to default.

Mitar
  • 1,892
9

Experimenting with xmodmap, I messed up my key settings by using xmodmap -en "keysym BackSpace = Delete". Thought the -n flag would cause no action to be taken because the man xmodmap page stated that

-n      This  option indicates that xmodmap should not change the mappings, but should display what it would
               do, like make(1) does when given this option.

However, the command caused my Delete key to be useless.

After reading the above, I just typed setxkbmap, hoping it would show me the options, whereas in fact it returned immediately with no output, and then my Delete key was miraculously working again!

So it looks as though

setxkbmap

alone will do the job...

teraspora
  • 211
  • 2
  • 3
3

I execute xmodmap commands via terminal.

After restarting GNOME(ALT+f2 r Enter) it reverts back. Kind of workaround but works.

Also this is better option.

itirazimvar
  • 131
  • 3
0

xmodmap will reset upon plugging in a new keyboard.

Thus, unplug and plug in a keyboard (in either order)

That will reset xmodmap.