Last active
August 29, 2015 14:18
-
-
Save chrcoe/92c388a98774d66bb6a8 to your computer and use it in GitHub Desktop.
Lenovo X1C fixes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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