Defining keyboard shortcuts involving the Fn key

25,710

Solution 1

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.

Solution 2

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.

Solution 3

I opened xev in a terminal. It detects when I press the Shift, Ctrl, Alt, and Win (Super), but when I pressed the Fn key it doesn't detect it.

So the software has nothing to do with the Fn key; it's up to the hardware to decide what key gets sent to the software (e.g. the Home or End key).

So your keyboard must already have it to be able to do this.

Share:
25,710

Related videos on Youtube

mox
Author by

mox

Updated on September 18, 2022

Comments

  • mox
    mox over 1 year

    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?

    • MycrofD
      MycrofD over 6 years
      Is anybody using modern (2018) laptops like HP Spectre x360 (although it has separate PgUp etc keys ) and Dell XPS aware if the Function key is detected like the other keys are?
    • Suor
      Suor about 5 years
      I am using Lenovo Thinkpad X1 Carbon with Fn key, which is detected as keycode 151 by xev. While Fn is pressed Left and Right keys produce no events. Fn+F2 produces no events, but works as expected - lowers volume.
  • William
    William over 5 years
    There is one operating system and computer that is definitely an exception to this rule and that is mac laptops. You can modify this key using Karabiner actually. Also thinkpads send this key to the operating system but it isn't a modifier key like on macs.
  • William
    William over 5 years
    Unfortunately fn on my laptop doesn't register with key up and key down events in the same way as other keys there by keeping this from working correctly for a modifier key. You can remap it to other one press keys though.
  • Suor
    Suor about 5 years
    This is not true. xev shows Fn key presses.
  • Pierre
    Pierre almost 5 years
    Well, on my Dell machine with a Debian 10, xev doesn't show anything when Fn key is pressed.
  • joeytwiddle
    joeytwiddle almost 3 years
    @Suor Which system was that? We all want one!
  • Suor
    Suor almost 3 years
    @joeytwiddle it's Ubuntu 20.10 on Thinkpad X1 Carbon