UPDATE August 2020: swap_fn_leftctrl
is now built-in in Linux 5.8 🎉
UPDATE Jun 2020: New feature added (swap_fn_f13_insert
) to move fn key to F13 and make fn Insert. Thanks to @smaslennikov!
UPDATE May 2020: Part of the patch (swap_fn_leftctrl
) was submitted and probably accepted to the upstream kernel. Thanks to the maintainer Jiri Kosina.
UPDATE Mar 2020: Now it works with Apple Magic Keyboard 2 in both USB and Bluetooth modes. Thanks to @almson!
UPDATE Dec 2019: If one has issues building for Fedora, please take a look at this information
UPDATE Apr 2017: Works on Arch too, for useful information on this proceed here
UPDATE May 2016: DKMS support added (tested on Ubuntu 16.04). Thanks to @almson!
UPDATE Dec 2015: An option to use the right Alt key as right ctrl was added. Thanks to @sami-mw!
UPDATE Oct 2015: The patch was modified for kernel 4.2 and support of Macbook Pro 2015. Thanks to @Aetf!
A patched version of hid-apple allows GNU/Linux user to swap the FN and left Control keys and some other mapping tweaks on Macbook Pro, external Apple keyboards and probably other Apple devices.
The patch was created by free5lot under GPL 2 (or later) licence. I hope it'll go to upstream kernel, so more GNU/Linux users could make their keyboards more comfortable for them.
This project was inspired by a similar patch made by JanmanX (Jan Meznik). His patch has the same idea but a bit different realization. I'd like to thank him for solving this problem in the first place and making his solution public.
This patch was created because Apple keyboards on Macbook Pro and external keyboard models have an awful location of special keys. To make it more habitual and friendly the fn key and left Control key should be swapped.
The swapping of Alt (Option) and Command is already possible without a patch by setting swap_opt_cmd=1 option to hid-apple kernel module in current versions of Linux kernel. More information is available at Ubuntu's help website.
Installation via DKMS (recommended)
You may need to install git and dkms first, e.g. on Ubuntu: sudo apt install git dkms
Clone this repo and go into the source code directory:
git clone https://github.com/free5lot/hid-apple-patched
cd hid-apple-patched
Install module:
sudo dkms add .
sudo dkms build hid-apple/1.0
sudo dkms install hid-apple/1.0
Then, create file /etc/modprobe.d/hid_apple.conf
. The following configuration emulates a standard PC layout:
options hid_apple fnmode=2
options hid_apple swap_fn_leftctrl=1
options hid_apple swap_opt_cmd=1
options hid_apple rightalt_as_rightctrl=1
options hid_apple ejectcd_as_delete=1
Finally, apply the new config file:
sudo update-initramfs -u
To (re-)load the module for immediate use, run
sudo modprobe -r hid_apple; sudo modprobe hid_apple
in one go (since the first command will disable your Apple keyboard). Alternatively, run sudo reboot
, and the new module should be loaded on reboot.
The advantage of DKMS is that the module is automatically re-built after every kernel upgrade and installation. This method has been tested at least on Ubuntu 14.04 and 16.04.
DKMS config of this repo has option DEST_MODULE_LOCATION
set to /extra
. That's the place compiled patched module will be placed.
Distributions like Ubuntu, Fedora, Suse and some others ignore this parameter and use the proper distribution-specific directory instead. There will be no issues with these distributions.
Other distributions like Mint can use DEST_MODULE_LOCATION
and may require an extra configuration file to be created by the user to force the use of patched version of hid-apple
from /extra
instead of original one.
In this case a new file /etc/depmod.d/hid-apple.conf
should be created which tells depmod to prefer the module in /extra
(see man 5 depmod.d
):
override hid-apple * extra
The configuration file needs to be there before the module is installed using DKMS. See additional information about it from @bambinodino (who pointed this out) in the issue #67.
An AUR package hid-apple-patched-git-dkms is available to automate the above installation steps.
See the ArchWiki for install and configuration instructions specific to Arch Linux.
Permanent configuration is done in file /etc/modprobe.d/hid_apple.conf
. The format is one option-value pair per line, like swap_fn_leftctrl=1
. After writing to the file, do sudo update-initramfs -u
and reboot.
Temporary configuration (applies immediately but is lost after rebooting) is possible by writing to virtual files in /sys/module/hid_apple/parameters/
, like echo 1 | sudo tee /sys/module/hid_apple/parameters/swap_fn_leftctrl
.
These options are from the original mainstream hid-apple
module:
fnmode
- Mode of top-row keys0
= disabled1
= normally media keys, switchable to function keys by holding Fn key (Default)2
= normally function keys, switchable to media keys by holding Fn key
swap_opt_cmd
- Swap the Option ("Alt") and Command ("Flag") keys0
= as silkscreened, Mac layout (Default)1
= swapped, PC layout
swap_fn_leftctrl
- Swap the Fn and left Control keys0
= as silkscreened, Mac layout (Default)1
= swapped, PC layout
iso_layout
- Enable/Disable hardcoded ISO-layout of the keyboard. Possibly relevant for international keyboard layouts0
= disabled,1
= enabled (Default)
And these options were added in the patched version:
rightalt_as_rightctrl
- Use the right Alt key as a right Ctrl key0
= as silkscreened, Mac layout (Default)1
= swapped, PC layout
ejectcd_as_delete
- Use Eject-CD key as Delete key, if available0
= disabled (Default)1
= enabled
lock_as_delete
- Use Lock key as Delete key, if available0
= disabled (Default)1
= enabled
swap_fn_f13_insert
- Swap the Fn and f13 keys, making Fn Insert and f13 Fn. For people who need Insert0
= disabled (Default),1
= enabled
Note: swap_fn_f13_insert
will be ignored if swap_fn_leftctrl
is activated.
Some distributions, including Ubuntu 16.04, require that all modules are signed if Secure Boot is enabled. This breaks all third-party modules. There are various work-arounds, the easiest of which is to disable secure boot. This is currently not an issue on Apple computers, because Apple firmware does not support Secure Boot. See issue #23.
Build and install via scripts provided:
./build.sh
./install.sh
The script will create /etc/modprobe.d/hid_apple.conf
for you, after asking a few questions.
This process needs to be repeated after installing a new kernel, after having booted into the new kernel.
-
To build make sure you have the kernel development packages for your distribution installed. For example in Ubuntu these packages are called
linux-headers-*
, where "*" indicates the version and variant of the kernel. -
The default kernel header directory in the Makefile is:
/usr/src/linux-headers-$(shell uname -r)
, it automatically detects and uses the version of running kernel. It works in Ubuntu and a lot of other GNU/Linux distributions, just skip this step if you use them. But if in your distribution the kernel header directory is different from the default one in the Makefile export the correct one:
export LINUX_HEADER_DIR=/path/to/kernel/header/dir
- To build:
make
- To install:
make install
- The install will put the module in the 'extra' sub-directory and the default unpatched module will take priority. To give your newly built module priority create a file '/etc/depmod.d/hid-apple.conf' and add the following line:
override hid_apple * extra
Then run:
sudo depmod -a
- And update of initramfs maybe required:
sudo update-initramfs -u
Macbook keyboards have no issues nor limitations regarding this patched module. But some External Keyboards (like Magic Keyboard A1255, A1644 and etc.) have a limitation (probably physical) related to the registration of keys from 5-T-G-B column with Fn+Command and Fn+Control being pressed simultaniously. More information can be found in issue #6. There is a workaround - to release the Fn key first in these combinations and it should work fine.
A lot of GNU/Linux users of Macbook Pro and/or external (wireless) keyboards face the problem of uncomfortable placement of keys. Here are some topics about swap of fn and left control keys, and all of them are checked unsolved or/and closed.
- Ubuntu Forums - swap fn and control key
- Stack Overflow - Is there any way to swap the fn (function) and control keys in linux on an macbook pro?
- Ubuntu Forums - Swap fn and control keys
- Organic Design - Apple wireless keyboard on Linux
So this patch is probably essential and desirable by users.
- ArchWiki (documentation wiki of Arch Linux) - Apple Keyboard - Swap the Fn key and Left Ctrl key (added by @Aetf)).
- Official documentation of openSUSE - Installation on a Mac (added by Cornertwist)
- Official documentation of Ubuntu - AppleKeyboard - Mapping keys (added by @Aetf).