您尚未登录。

公告

[通告] 本论坛迁移啦~请前往位于 https://forum.archlinuxcn.org/ 的新论坛。所有帖子和参与的用户都已经迁移。

您正在访问的是原 bbs.archlinuxcn.org 的静态存档。本页面的新地址位于 https://forum.archlinuxcn.org/t/topic/8980

#1 2016-09-17 13:59:17

沉沦的菩提
会员
注册时间: 2016-08-06
帖子: 106

[已经解决]嗯……,再一个问题,KDE里怎么设置触摸板轻击代替点击。

×××这个问题是我对设置理解错了,KED的设置界面不是很直观。在点击测试那里选择测试,点一下就行了。而且可以设置多指,只要触摸板本身支持多点。×××

T430装的KDE,设置里没有轻击代替点击。xfce4里面就有。怎么解决?

最近编辑记录 沉沦的菩提 (2016-09-19 12:07:16)

离线

#2 2016-09-17 16:31:00

zsrkmyn
lazy...
注册时间: 2013-05-05
帖子: 336

Re: [已经解决]嗯……,再一个问题,KDE里怎么设置触摸板轻击代替点击。

synaptics触摸板的话要xf86-input-synaptics驱动

离线

#3 2016-09-17 17:09:39

沉沦的菩提
会员
注册时间: 2016-08-06
帖子: 106

Re: [已经解决]嗯……,再一个问题,KDE里怎么设置触摸板轻击代替点击。

zsrkmyn 说:

synaptics触摸板的话要xf86-input-synaptics驱动

驱动已经安装,触摸板使用正常,就是没地方设置轻点代替点击。

离线

#4 2016-09-17 18:00:43

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 9,397
个人网站

Re: [已经解决]嗯……,再一个问题,KDE里怎么设置触摸板轻击代替点击。

cat /etc/X11/xorg.conf.d/50-synaptics.conf
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
	Option "HorizEdgeScroll" "1"
	Option "VertEdgeScroll" "1"
	Option "VertTwoFingerScroll" "1"
	Option "HorizTwoFingerScroll" "1"
	Option "CircularScrolling" "1"
	Option "CircScrollTrigger" "3"
	Option "BottomEdge" "4200"
	Option "RightEdge" "5500"
	Option "LockedDrags" "1"
	Option "LockedDragTimeout" "300"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
        MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
        Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

离线

页脚