Skip to content

Instantly share code, notes, and snippets.

@joshuaaguilar20
Created July 23, 2020 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshuaaguilar20/39af26e0554627ada531e7e8f0371e7e to your computer and use it in GitHub Desktop.
Save joshuaaguilar20/39af26e0554627ada531e7e8f0371e7e to your computer and use it in GitHub Desktop.
using ios keyboard on linux (not sure if it works will comment outcome

For anyone stumbling upon this thread using one of the newer MacBook Pros (2016 and later) which need the applespi driver to make the keyboard and touchpad work, here's how to make this work, as I couldn't find any other thread explaining this for newer Macs.

As far as I understand, the driver effectively replaces the role of the hid_apple module, so the files to edit are slightly different.

  1. First, to verify that you are using the applespi driver and not the hid_apple driver, check which of these commands (using the terminal) returns something. Whichever does will tell you which driver you are currently using:

If this returns "applespi", you are using applespi

sudo ls /sys/module | grep applespi

If this returns "hid_apple", you are using hid_apple

sudo ls /sys/module | grep hid_apple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment