Created
February 19, 2012 00:26
-
-
Save manuelmorales/1861441 to your computer and use it in GitHub Desktop.
HP dv3 ClickPad setup for Ubuntu 11.10 Oneiric Ocelot
This file contains hidden or 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
# Install the patch | |
sudo add-apt-repository ppa:sergio91pt/synaptics+clickpads | |
sudo apt-get update | |
sudo apt-get install synaptics-touchpad | |
# Tweak the default settings | |
sudo vi /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf | |
# Add to the end | |
Section "InputClass" | |
Identifier "touchpad catchall" | |
Driver "synaptics" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Option "SHMConfig" "on" | |
Option "TapButton1" "1" | |
Option "TapButton2" "2" | |
Option "TapButton3" "3" | |
Option "VertTwoFingerScroll" "1" | |
Option "TapAndDragGesture" "1" | |
Option "SingleTapTimeout" "320" | |
Option "FastTaps" "1" | |
Option "LockedDrags" "1" | |
Option "AreaBottomEdge" "3800" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment