blob: ccca3698034f97accae8381f97de235658ce1e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
===============================================================================
* SETUP NOTE * SETUP NOTE *
o Don't run moused(8) daemon.
Dont' set moused_enable="YES" in /etc/rc.conf.
/etc/rc.conf --------------------------------------
moused_enable="NO"
---------------------------------------------------
o Add boot time tunable to /boot/loader.conf.
Set hw.psm.synaptics_support=1 and shutdown -r now!
/boot/loader.conf ---------------------------------
hw.psm.synaptics_support=1
---------------------------------------------------
o Set your /etc/xorg.conf (or /etc/XF86Config)
Adopt your environment. This is a sample configration.
/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"
# Humm.. This seems good works with synclient(1).
Option "SHMConfig" "on"
# If you use circular touchpad, uncomment them.
# Option "CircularScrolling" "on"
# Option "CircularPad" "on"
EndSection
:
/etc/xorg.conf (/etc/XF86Config) ------------------
===============================================================================
|