Defining keyboard shortcuts involving the Fn key

I am accustomed to pressing Fn+Left to simulate the Home key and Fn+Right for End.

On a keyboard with physical Home and End keys, using these Fn keyboard shortcuts do not work.

How can I map custom Fn keyboard shortcuts on Ubuntu Linux?


Unlike modifiers such as Alt and Ctrl, pressing the Fn key is never communicated to the operating system. The key merely modifies the scancodes of other keys, so pressing Fn+Right would emulate an End key, even though it may not physically exist, but they are indistinguishable by the OS. This behaviour is controlled exclusively by the keyboard electronics and can therefore not be altered without messing with the circuitry or microcontroller.


On most systems it is not possible to detect the Fn key itself, but you could try using:

$ xev | grep --line-buffered keysym

to find out what keys Fn-Left and Fn-Right do send. (The grep just reduces the noise.)

If you are lucky, those keypresses will send unimportant keystrokes to the machine, which you can then remap.

For example, on my system, xev shows that my Fn-Left keypress actually sends an XF86AudioPrev event:

state 0x0, keycode 173 (keysym 0x1008ff16, XF86AudioPrev), same_screen YES,

I can easily remap this to translate into a Home key event:

$ xmodmap -e 'keysym XF86AudioPrev = Home'

Hopefully you will be able to do the same for End, PageUp and PageDown.

Unfortunately if xev does not receive anything unique when you press Fn-Left then you are out of luck.

It's a real shame that Fn keypresses are not sent directly like the other modifier keys are. If they were, we would have much more power to configure their meaning through software.