Skip to content

Instantly share code, notes, and snippets.

@manuelmorales
Created February 19, 2012 00:26
Show Gist options
  • Save manuelmorales/1861441 to your computer and use it in GitHub Desktop.
Save manuelmorales/1861441 to your computer and use it in GitHub Desktop.
HP dv3 ClickPad setup for Ubuntu 11.10 Oneiric Ocelot
# 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