解决触摸板  异常灵敏

安装驱动

emerge synaptics

在/etc/X11/xorg.conf 中
加入

Section "InputDevice"
        Identifier  "Touchpad"
        Driver      "synaptics"
        Option            "Device" "/dev/input/mouse0"
        Option            "Protocol" "auto-dev"
        Option            "LeftEdge" "1700"
        Option            "RightEdge" "5300"
        Option            "TopEdge" "1700"
        Option            "BottomEdge" "4200"
        Option            "FingerLow" "25"
        Option            "FingerHigh" "30"
        Option            "MaxTapTime" "180"
        Option            "MaxTapMove" "220"
        Option            "VertScrollDelta" "100"
        Option            "MinSpeed" "0.06"
        Option            "MaxSpeed" "0.22"
        Option            "AccelFactor" "0.0010"
        Option            "SHMConfig" "on"
        Option            "VertEdgeScroll" "true"        #vertical scrolling when dragging along the right edge.
        Option            "HorizEdgeScroll" "true"        #horizontal scrolling when dragging along the bottom edge.
        Option            "CornerCoasting" "1"        #如果手指滑动到最边界是否屏幕继续滚动
        Option            "CircularScrolling" "on"
        Option            "CircScrollTrigger" "3"
EndSection