mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
Fix up some parameters and messages.
This commit is contained in:
parent
883803337e
commit
c50b912227
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=157639
@ -6,13 +6,6 @@ o Please remove ${X11BASE}/lib/modules/input/synaptics_drv.so
|
||||
manually, If you have installed synaptics-0.14.4_1. I forgot
|
||||
to chase pkg-plist on 0.14.4_1.
|
||||
|
||||
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!
|
||||
|
||||
@ -20,6 +13,13 @@ o Add boot time tunable to /boot/loader.conf.
|
||||
hw.psm.synaptics_support=1
|
||||
---------------------------------------------------
|
||||
|
||||
o Don't run moused(8) daemon.
|
||||
Dont' set moused_enable="YES" in /etc/rc.conf.
|
||||
|
||||
/etc/rc.conf --------------------------------------
|
||||
moused_enable="NO"
|
||||
---------------------------------------------------
|
||||
|
||||
o Set your /etc/xorg.conf (or /etc/XF86Config)
|
||||
Adopt your environment. This is a sample configration, and
|
||||
following setting is mine. You may want to change the
|
||||
@ -43,26 +43,39 @@ Section "InputDevice"
|
||||
|
||||
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 "HorizScrollDelta" "100"
|
||||
|
||||
Option "MinSpeed" "0.06"
|
||||
Option "MaxSpeed" "0.06"
|
||||
Option "AccelFactor" "0.0010"
|
||||
|
||||
# Humm.. This seems good works with synclient(1).
|
||||
Option "SHMConfig" "on"
|
||||
Option "ScrollButtonRepeat" "on"
|
||||
Option "UpDownScrolling" "on"
|
||||
Option "UpDownRepeat" "on"
|
||||
Option "LeftRightScrolling" "on"
|
||||
Option "LeftRightRepeat" "on"
|
||||
|
||||
# "SHMConfig on" seems good works with synclient(1). But this
|
||||
# options is insecure. I recommended "off" as default.
|
||||
Option "SHMConfig" "off"
|
||||
|
||||
# If you use circular touchpad, uncomment them.
|
||||
# Option "CircularPad" "on"
|
||||
# Option "CircularScrolling" "on"
|
||||
# Option "CircScrollDelta" "0.5"
|
||||
# Option "CircularPad" "on"
|
||||
EndSection
|
||||
:
|
||||
/etc/xorg.conf (/etc/XF86Config) ------------------
|
||||
|
@ -6,13 +6,6 @@ o Please remove ${X11BASE}/lib/modules/input/synaptics_drv.so
|
||||
manually, If you have installed synaptics-0.14.4_1. I forgot
|
||||
to chase pkg-plist on 0.14.4_1.
|
||||
|
||||
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!
|
||||
|
||||
@ -20,6 +13,13 @@ o Add boot time tunable to /boot/loader.conf.
|
||||
hw.psm.synaptics_support=1
|
||||
---------------------------------------------------
|
||||
|
||||
o Don't run moused(8) daemon.
|
||||
Dont' set moused_enable="YES" in /etc/rc.conf.
|
||||
|
||||
/etc/rc.conf --------------------------------------
|
||||
moused_enable="NO"
|
||||
---------------------------------------------------
|
||||
|
||||
o Set your /etc/xorg.conf (or /etc/XF86Config)
|
||||
Adopt your environment. This is a sample configration, and
|
||||
following setting is mine. You may want to change the
|
||||
@ -43,26 +43,39 @@ Section "InputDevice"
|
||||
|
||||
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 "HorizScrollDelta" "100"
|
||||
|
||||
Option "MinSpeed" "0.06"
|
||||
Option "MaxSpeed" "0.06"
|
||||
Option "AccelFactor" "0.0010"
|
||||
|
||||
# Humm.. This seems good works with synclient(1).
|
||||
Option "SHMConfig" "on"
|
||||
Option "ScrollButtonRepeat" "on"
|
||||
Option "UpDownScrolling" "on"
|
||||
Option "UpDownRepeat" "on"
|
||||
Option "LeftRightScrolling" "on"
|
||||
Option "LeftRightRepeat" "on"
|
||||
|
||||
# "SHMConfig on" seems good works with synclient(1). But this
|
||||
# options is insecure. I recommended "off" as default.
|
||||
Option "SHMConfig" "off"
|
||||
|
||||
# If you use circular touchpad, uncomment them.
|
||||
# Option "CircularPad" "on"
|
||||
# Option "CircularScrolling" "on"
|
||||
# Option "CircScrollDelta" "0.5"
|
||||
# Option "CircularPad" "on"
|
||||
EndSection
|
||||
:
|
||||
/etc/xorg.conf (/etc/XF86Config) ------------------
|
||||
|
Loading…
Reference in New Issue
Block a user