Skip to content

Instantly share code, notes, and snippets.

@chrcoe
Last active August 29, 2015 14:18
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 chrcoe/92c388a98774d66bb6a8 to your computer and use it in GitHub Desktop.
Save chrcoe/92c388a98774d66bb6a8 to your computer and use it in GitHub Desktop.
Lenovo X1C fixes
iwlwifi disable 802.11n to allow 100% uptime with wifi::
sudo echo "options iwlwifi 11n_disable=1" > /etc/modprobe.d/iwlwifi-disable11n.conf
to fix the trackpad (need to use kernel 4 to allow buttons to act as expected) will still need to change the scrolling functionality:
add the following to: /etc/X11/xorg.conf.d/20-trackpad.conf
Section "InputClass"
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint"
MatchDevicePath "/dev/input/event*"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "Emulate3Buttons" "false"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment