0

I just installed Ubuntu 22.04 on my intel macbook pro (2017).

Now i want to customize the keyboard layout a bit, like making the function keys work by default

But when I try to follow these instructions, I find that hid_apple is not installed/running:

$ sudo bash -c "echo 2 > /sys/module/hid_apple/parameters/fnmode
>> bash: line 1: /sys/module/hid_apple/parameters/fnmode: No such file or directory

I even tried to install this patched version manually but it didn't work.

Epskampie
  • 697

1 Answers1

1

Turns out hid_apple was renamed to applespi.

echo 2 | sudo tee /sys/module/applespi/parameters/fnmode

Epskampie
  • 697