Advertisement
bligneri

ASUX UX31, touchpad settings

Jan 28th, 2012
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. ben@Elrond:~/Bin$ cat sinclient.sh
  2. #!/bin/bash
  3. # higher sensitivity
  4. synclient FingerLow=9 FingerHigh=12
  5.  
  6. # faster movements
  7. synclient MinSpeed=2.0 MaxSpeed=3.5 AccelFactor=0.1
  8.  
  9. # 2 fingers scroll
  10. synclient VertTwoFingerScroll=1 HorizTwoFingerScroll=1
  11.  
  12. # faster coasting
  13. synclient CoastingSpeed=10 CoastingFriction=25
  14.  
  15. # enable tap to click (2 fingers for middle click, 3 fingers for right click)
  16. synclient TapButton1=1 TapButton2=3 TapButton3=2
  17.  
  18. # faster tap and double tap
  19. synclient FastTaps=1 MaxDoubleTapTime=100
  20.  
  21. # continue dragging movement when reaching the edge of the touchpad
  22. synclient EdgeMotionMinZ=30 EdgeMotionMaxZ=40 EdgeMotionMinSpeed=100 EdgeMotionMaxSpeed=400
  23.  
  24. # for drag& drop : bug Ubuntu 11.10
  25. synclient SingleTapTimeout=350
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement