How to use fn-key (function keys) with an external keyboard that has no fn-key? [duplicate]

You will not be able to do this. The controller in the keyboard sends a keycode to the OS whenever a key is pressed. That keycode is unique to every key on the keyboard... except for the Fn key.

The Fn key, modifies other keys on the keyboard, as does Shift, Alt, Ctrl, Option, etc... the only difference is that each of the latter modifiers is recognized by the OS. In other words, the keyboard controller tells the OS that "shift" was pressed, at the same time as the "s" key. The OS then iterprets that to mean the user wants a capital letter "s" or "S".

This is not the case with the Fn key. The fact that it is pressed is captured by the keyboard controller and a separate, unique, keycode is sent when you press the next key. For instance F1 sends a keycode, lets call that keycode "xyz" When Fn and F1 are pressed at the same time, a different keycode is sent to the OS.

What you could do is discover what those keycodes are...the ones that are issued when you press Fn + F1-f13. Then if you wern't using the function keys for their original purpose, you could map those to the new keycodes (the equivalent of pressing Fn+Fx) and go from there to get your volume keys and all the rest of the goodies that Apple hides up there.

Checkout this article form Wikipedia: http://en.wikipedia.org/wiki/Fn_key


Alternatively, the Keyboard settings pane of System Preferences will allow you switch whether you wanted a single keypress of any function key to send the keycode equivalent of Fn+Fx or simply Fx. Perhaps you can use that checkbox to get what you want... though I don't think it will work with your keyboard. I think you need a newer keyboard to get this to work.

Use fn....


Many articles online claim that Fn key is fundamentally different and there is no way to remap another key to Fn. I blindly believed them. It is not true.

At least on Mac, you can install Karabiner-Elements, the powerful keyboard customizer for macOS. You can remap the key you desire, such as help or F16, to Fn.

Note: the help key on A1048 is actually a standard insert key. So choose insert in the From key dropdown menu, do not choose help. See attached picture below. Nonetheless, help is kind of a good name for a Fn modifier.

enter image description hereFor A1048, the top right 4 keys: -vol, +vol, mute, eject, cannot be remapped. It seems Karabiner doesnot recognize these media keys (as in its Karabiner EventViewer).

Enjoy the new key! I believe this also applies to other non-Apple PC keyboards.