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?
keyboardshortcut-keysxorg
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?
Best Answer
Notice: As of 2013, Ubuntu and derivatives no longer use
xmodmap
, but instead usexkb
. 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.
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.xev
will output some information about the pressed key. The third line is important. It should look similar to: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 outputHere again the interesting part for us is
keycode 115
andNext
- the name of the behaviour.now when you want to swap the two keys use
xmodmap
.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:
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:
(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 commandxmodmap .Xmodmap
in.You can now modify
.Xmodmap
and runxmodmap .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.
mod2
, becausexmodmap -pm
tells us thatmod2
isNum_Lock
, the other names are obtained by pressing the keys inxev
.