onlylove 写了:royclark 写了:onlylove 写了:瓦特1 写了:onlylove 写了:瓦特1 写了:synclient VertEdgeScroll=1 HorizEdgeScroll=1
开机启动 谢谢
触摸板的滚动啊……这个有专门的配置文件的……

~/.profile没效
在.bashrc加
synclient VertEdgeScroll=1 HorizEdgeScroll=1
重启后
要启动终端才有效
我是13.10没etc/x11/xorg.conf
配置文件在那里
删了办公和游戏 ,启动应用程序 启动不了 不知道有没有关联
还真不在/etc/X11/xorg.conf里面……
印象里面是/usr/share或者别的目录里
在 /etc/X11/xorg.conf.d/ 里建个文件写进去就好了,比如说像这样。
代码: 全选
$ cat /etc/X11/xorg.conf.d/synaptics.conf
Section "InputClass"
Identifier "Touchpad" # required
MatchIsTouchpad "yes" # required
Driver "synaptics" # required
Option "TapButton1" "1"
Option "RightEdge" "5550"
Option "VertEdgeScroll" "1"
Option "HorizEdgeScroll" "1"
Option "RTCornerButton" "2" # browser "back" btn
Option "RBCornerButton" "3" # browser "forward" btn
EndSection
这是参照
https://wiki.debian.org/SynapticsTouchpad 设的,在本人 Debian Sid 上有效。要是参照
https://wiki.archlinux.org/index.php/Touchpad_Synaptics 设置应该也可以。
另外,不清楚 Ubuntu 13.10 上有没有下面这样的东西,有的话应该也能起作用。
gnome-control-center.png
刚去看了下,应该是/usr/share/X11/xorg.conf.d/下面一个数字开头(我电脑上是50)加synaptics的一个文件,编辑那个文件应该就可以
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# 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-t ... rrors.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
# non-synaptics clickpads.
# 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"
# To disable the bottom edge area so the buttons only work as buttons,
# not for movement, set the AreaBottomEdge
# Option "AreaBottomEdge" "82%"
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
旁边还有个51-synaptics-quirks.conf