freebsd-ports/x11-drivers/synaptics/pkg-message
2006-03-18 16:48:14 +00:00

59 lines
1.4 KiB
Text

===============================================================================
* SETUP NOTE * SETUP NOTE *
o Don't run moused(8) daemon.
Do kill moused.
# killall moused
and
Dont' set moused_enable="YES" in /etc/rc.conf.
/etc/rc.conf --------------------------------------
moused_enable="NO"
---------------------------------------------------
o Set your /etc/xorg.conf (or /etc/XF86Config)
/etc/xorg.conf (/etc/XF86Config) ------------------
:
Section "Module"
:
Load "synaptics"
EndSection
Section "ServerLayout"
:
InputDevice "Synaptics_Touchpad" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Synaptics_Touchpad"
Driver "synaptics"
Option "Device" "/dev/psm0"
Option "Protocol" "psm"
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.06"
Option "AccelFactor" "0.0010"
# I didn't test, yet. So I recommended "off".
Option "SHMConfig" "off"
# If you use circular touchpad, uncomment them.
# Option "CircularScrolling" "on"
# Option "CircularPad" "on"
EndSection
:
/etc/xorg.conf (/etc/XF86Config) ------------------
===============================================================================