How do I remap certain keys or devices?

311,811

Solution 1

Notice: As of 2013, Ubuntu and derivatives no longer use xmodmap, but instead use xkb. For more information see this answer. The answer below is no longer relevant for current releases.


For remapping certain keys you need two tools. First xev (command-line tool) and second xmodmap (also command-line tool). Both should be available in Ubuntu without extra installing them.

  1. Start terminal window and run xev. Now it's active and waits for you to press a key. Then press the key whose behaviour you want to change. i.e. PgUp.

  2. xev will output some information about the pressed key. The third line is important. It should look similar to:

    state 0x10, keycode 110 (keysym 0xff55, Prior), same_screen YES,
    

    in this example Prior is the name of the behaviour the key is assigned to at the moment, the number keycode is the internal id to recognize the key. Now do this with another key i.e. PgDown give this output

    state 0x10, keycode 115 (keysym 0xff56, Next), same_screen YES,
    

    Here again the interesting part for us is keycode 115 and Next - the name of the behaviour.

  3. now when you want to swap the two keys use xmodmap.

     xmodmap -e "keycode 110 = Next"
    

    This changes the key with keycode 110 on your keyboard to the action Next. It's pretty simple.

    Note that if the key you are mapping should have a different meaning when used with the Shift key (for example for British keyboard layouts, Shift+2 gives quotation marks) then you can simply list the secondary command after the first. For example if you want the key with code 53 to map to backslash normally, but to the bar symbol when used with shift, you might do:

     xmodmap -e "keycode 53 = backslash bar"
    

Additional information: The sequence of these mappings is Key, Shift+Key, mode_switch+Key, mode_switch+Shift+Key, AltGr+Key, AltGr+Shift+Key. To skip a column use NoSymbol. Moreover, here is a comprehensive list of all keysyms.

Note: These change are for the active X session only and will be lost after reboot. When you want to save the changes permanently you have to run the following commands after the ones above:

xmodmap -pke >~/.Xmodmap

(it creates a file named .Xmodmap in your home directory (~))

Then you have to create a file named .xinitrc in your home directory where you put command xmodmap .Xmodmap in.

You can now modify .Xmodmap and run xmodmap .Xmodmap from console to see the changes immediately. The changes in .Xmodmap will persist.

source: Ubuntu Foruns

Bonus stuff:

If the key you are remapping has different behavior depending on a state ( like how the keys in the numeric keyboard depend on NumLock) you simply have to do xmodmap -pm to get a list of modifiers and then do:

xmodmap -e "KEYCODE MODIFIER = behaviour behaviour_with_modifier"

Suppose, for example, that you want to get a period instead of a comma on the numeric keyboard (useful for most programmers), but you want to keep the "delete" behavior when NumLock is off.

xmodmap -e "keycode 91 mod2 = KP_Delete period"

mod2, because xmodmap -pm tells us that mod2 is Num_Lock, the other names are obtained by pressing the keys in xev.

Solution 2

If you're trying to move a Shift key, there are a few extra steps:

 xmodmap -e "keycode 62 = Up" # Shift => Up
 xmodmap -e "keycode 111 = Shift_R" # Up => Shift
 xmodmap -e "add shift = Shift_R" # Make the new Shift key actually do shifting
 xmodmap -e "remove shift = Up" # Prevent the old Shift key from shifting
 xset r 62 # Make the new Up key autorepeat
 xset -r 111 # Prevent the new Shift key from autorepeating

Solution 3

I've just had an afterthought.. I think you may mean something entirely different by "remap".. but I'll leave my answer as it is... (I don't know how to re-assign one key to behave as another)

UPDATE: my 'afterthought' has been confirmed; ( I've answered the wrong question :)... please see NES's Community Wiki answer (accepted above).

There are two general ways to remap rebind a key.

  • locally to a particular program
    (a key can be used for different things in different apps/windows)
  • globally for a specific user
    (a key has the same function in all windows)

For 'local to a program' methods, there is sometimes a way to change keybindings offered by the app itself... eg.

Firefox has an addon called keyconfig ... for some info see this MozillZine post

Most Ubuntu programs are Gnome based and there is a specific utility to modify the keybinding for any menu item of these Gnome apps... It is called Editable Menu Accelerator ... It is a very 'touchy' tool, but quite powerful.. You can enable it by running gconf-editor (via Terminal or Alt+F2)... navigate to desktop--gnome--interface and select can_change_accels .... You can then change menu items to virtual anything you like (per program/window)... I suggest you disable it as soon as you've done what you need..

Otherwise you can set up Global hotkeys. I use a program called xbindkeys Install xbindkeys, and there is also an option available via the Main Menu -- Preferences, called Keyboard Shortcuts

If you use xbindkeys, you will need to add it to your "Startup Applications" (Main Menu -- Preferences) ... Also (as suggested by Stefano Palazzo) I have previously written a more detailed description of xbindkeys in an answer on this askubuntu page

Solution 4

Here is how I tried to switch the mapping of the ENTER key to the SHIFT key (and vice versa):

$ uname -a

REPORTS:

Linux box 2.6.32-37-generic #81-Ubuntu SMP Fri Dec 2 20:35:14 UTC 2011 i686 GNU/Linux

$ which xmodmap

REPORTS:

/usr/bin/xmodmap

$ which xev

REPORTS:

/usr/bin/xev

$ xev

(ignore the next fifty lines or so)

PRESS THE ENTER KEY (notice the third line):
KeyPress event, serial 33, synthetic NO, window 0x5600001,
    root 0x110, subw 0x0, time 263441120, (738,242), root:(771,314),
    state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
    XLookupString gives 1 bytes: (0d)
    XmbLookupString gives 1 bytes: (0d)
    XFilterEvent returns: False

KeyRelease event, serial 33, synthetic NO, window 0x5600001,
    root 0x110, subw 0x0, time 263441271, (738,242), root:(771,314),
    state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
    XLookupString gives 1 bytes: (0d)
    XFilterEvent returns: False

PRESS THE SHIFT KEY (notice the third line):
KeyPress event, serial 30, synthetic NO, window 0x5600001,
    root 0x110, subw 0x0, time 263592202, (464,368), root:(497,440),
    state 0x0, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
    XLookupString gives 0 bytes:
    XmbLookupString gives 0 bytes:
    XFilterEvent returns: False

KeyRelease event, serial 33, synthetic NO, window 0x5600001,
    root 0x110, subw 0x0, time 263592298, (464,368), root:(497,440),
    state 0x1, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False

What's important is the third line of each keypress:

FOR:
state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
The name "Return" is the name of the behavior of the key pressed.
The number of the key pressed is "36".

state 0x0, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
The name "Shift_R" is the name of the behavior of the key pressed.
The number of the key pressed is "62".

REVERSE THE MAPPING:

$ xmodmap -e "keycode 62 = Return"
$ xmodmap -e "keycode 36 = Shift_R"

SAVE THE RESULTS:

$ xmodmap -pke > ~/.Xmodmap
$ vi ~/.xinitrc

ADD

 xmodmap ~/.Xmodmap

$ sudo reboot

The main problem was that the reversal did NOT work. The ENTER key was mapped to the SHIFT_R key; but the SHIFT_R key was not mapped to the ENTER key. Go figure.

Solution 5

In order to do global remaps independently of X, you can make use of console-setup(5) instead.

In my case I wanted to remap Caps Lock key to D, since my D-key is broken :)

First I used dumpkeys(1) to get a template for a mapping, in the case of the D-key, the interesting bit is the mapping for keycode 32 (on my keyboard); Note that there are two spaces in the grep pattern!

$ sudo dumpkeys | grep "keycode  32" > tempfile
$ cat tempfile
keycode  32 = +d
    shift   keycode  32 = +D
    altgr   keycode  32 = +eth
    shift   altgr   keycode  32 = +ETH
    control keycode  32 = Control_d
    shift   control keycode  32 = Control_d
    altgr   control keycode  32 = Control_d
    shift   altgr   control keycode  32 = Control_d
(121 lines total...)

In order to change the map to apply to Caps Lock (keycode 58 on my keyboard) instead

sed 's/32/58/' -i tempfile

Now it reads

keycode  58 = +d
    shift   keycode  58 = +D
    altgr   keycode  58 = +eth
(etc...)

To add this remap to the default map, it simply needs to be appended to the remap include file for console-setup

sudo sh -c 'cat tempfile >> /etc/console-setup/remap.inc'

and console-setup needs to be reconfigured (skipping low priority questions with -phigh)

sudo dpkg-reconfigure console-setup -phigh

Now the remap should be completed, and be loaded automatically on boot.

Share:
311,811

Related videos on Youtube

OverStacked
Author by

OverStacked

Updated on September 17, 2022

Comments

  • OverStacked
    OverStacked almost 2 years

    I'm searching for a way to remap certain keys in ubuntu.

    i.e.

    I'd like to change PgUp to Home or PgDown to End.

    Does a built-in command or a tool exist reassign keys in Ubuntu/GNOME?

    • Admin
      Admin about 12 years
      checkout my answer here. It doesn't worth copy and paste same answer. Perhaps it would help you.
    • Admin
      Admin almost 9 years
      Any Emacs-like bindings here for CTRL-P/N for unit steps?
    • Admin
      Admin about 7 years
      Since some time xmodmap is depricated! to get a system wide setting you have to use xkb. So edit the language file in /usr/share/X11/xkb/symbols/ to add your changes there. See askubuntu.com/a/898462/34298
  • flo
    flo over 13 years
    +1, very nice! A suggestion: You should integrate your great answer from another question into this one, maybe also explain the configuration format of xbindkeys a little bit.
  • flo
    flo over 13 years
    The bit about assigning other keys could be handled by xdotool, check out the man page, I've used it to solve this problem.
  • OverStacked
    OverStacked over 13 years
    i recently found another approach with a tool called xmodmap in combination with a tool called xev. i don't know what the differences between xmodmap and xbindkeys are, but this works pretty well for me. some advice with tool to prefer of the named two? Here is a very helpful step by step guide which describes xmodmap and xev ubuntuforums.org/showpost.php?p=7675138&postcount=2
  • Peter.O
    Peter.O over 13 years
    @NES.. It appears I've addressed the wrong point.. You seem to want to actually remap the way a particular key is interpreted by the OS, ie, a non-standard keyboard interpretation, whereas I've been refering to a standard keyboard-interpretation, and simply overloading the default key-assignments. (I think what you are after is similar to swapping the left and right mouse buttons) .. Well it seems my answer was good for the wrong thing :)
  • OverStacked
    OverStacked over 13 years
    yes, but no problem. the answer is also interesting. the step by step guide i posted the link above was the right way. so i'll post a short answer with the solution that other users have a good guide. thanks fred
  • om-nom-nom
    om-nom-nom over 12 years
    xev is not able to catch Fn key pressings
  • Allyl Isocyanate
    Allyl Isocyanate over 11 years
    The selected answer didn't work for remapping the Caps-lock key for me on Ubuntu 12.10. I was able to to do this by going to System Settings -> Keyboard -> Layout Settings -> Options, which has a list of keys and alternative behaviors. Worked flawlessly in Unity and terminal.
  • rbrito
    rbrito over 11 years
    +1 The most unix-y answer of all of those for a modifier (I had already done so way, way back with my iBook 2, when I wanted the enter key to have the function of Control_R, but had forgotten the details).
  • Vishal Kotcherlakota
    Vishal Kotcherlakota over 11 years
    The Keyboard > Shortcuts tip worked perfectly for me. My need was fairly simple, though; I just wanted to open the file manager, and there's a Home Folder setting under Launchers.
  • Isabella Nagel
    Isabella Nagel almost 11 years
    @Jop I don't think so, since what you are changing is the response to the keycode and the keycodes of the to keyboards should overlap.
  • Josh
    Josh over 10 years
    Strange, I did everything, but my keymappings still reset after restarting.
  • isomorphismes
    isomorphismes over 10 years
    I don't think I have an -event flag in Ubuntu 12.04. It throws an error and doesn't mention "event" in man xev.
  • isomorphismes
    isomorphismes over 10 years
    fwiw: after logging the results of xev to a file called event.out I filter the non-keypress events with perl -e '$/ = "\n\n"; while(<>) { print $_ if $_ =~ "KeyPress"; }' event.out > keypress.event.out.
  • Martin Tournoij
    Martin Tournoij over 10 years
    xmodmap -e "KEYCODE MODIFIER = behaviour behaviour_with_modifier" ... Where did you get this from? It doesn't seem to work, and I can't find any other reference / docs on this syntax ...
  • jmiserez
    jmiserez about 8 years
    This answer is still relevant for Ubuntu 14.04 and works just fine, you just have to run the commands each time you login.
  • updogliu
    updogliu over 7 years
    1. If .xinitrc does not work, try .xsessionrc instead; 2. Avoid setxkbmap overwriting xmodmap: askubuntu.com/questions/451945
  • Einar Ólafsson
    Einar Ólafsson about 7 years
    An important answer for users using keyboards on Lenovo Laptops
  • Ben
    Ben over 5 years
    This worked perfekt to set up Super+C and Super+V to Ctrl+C and Ctrl+V . Just the perfect solution when using Ubuntu via VirtualBox on a mac
  • Ben
    Ben over 5 years
    However, this does not disable other commands that listen to these shortcuts. To disable Super+V to "show the notification list" go to Setting -> Devices -> Keyboard and disable it there
  • ego
    ego over 5 years
    @Ben yup, it would be great if it displayed bindings of other apps, but it's rather icing on the cake. My problem is that it's not possible to remap "Fn" key. I've decided to try out uhk keyboard - that thing programmable independent of os, will see how it goes.
  • frozen-flame
    frozen-flame over 3 years
    ubuntu server 18.04, without LightDM/GDM and Desktop Environment, simply startx and xmodmap -e in .xinitrc: xmodmap works.
  • DMT
    DMT over 3 years
    Couldn't resist to create an extra comment to tell how great key-mapper is! Remapping shortcuts is now a joy! Huge thanks! It definitely should be more popular.
  • DMT
    DMT over 3 years
    Forgot to add that it even works with Wayland!
  • Subhajit
    Subhajit over 2 years
    I am able to disable Function keys like F1 using the command xmodmap -e 'keycode 67=' . But need to disable a combination like "Control Alt F1", how to do that ?