Wednesday, March 08, 2006

Mouse Support in XFree86

Mouse Support in XFree86
XF86Config
ServerLayout
InputDevice CorePointer, SendCoreEvents
Identifier
Driver
Option Device, Protocol, ZAxisMapping, Buttons

Mouse Support in X11R6.9 Xorg
Mouse Options List

Use Both a Pointer and a USB Mouse
Mouse setup - Wheel and USB (Linux Reviews)
xmodmap -e "pointer = values"
in /etc/X11/xinit/xinitrc.d/xinput
Get All Mouse Buttons Working - ArchWiki
HOWTO Mouse Nav Buttons - Gentoo Linux Wiki - very good examples on Microsoft Explorer

/etc/X11/XF86Config for laser mouse 6000

Section "ServerLayout"
...................
InputDevice "Mouse1" "CorePointer"
InputDevice "Mouse0" "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
# Option "Protocol" "MouseManPlusPS/2"
Option "Protocol" "Auto"
# Option "Device" "/dev/psaux"
Option "Device" "/dev/input/mouse0"
# Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
# Option "Device" "/dev/input/mice"
Option "Device" "/dev/input/mouse1"
# Option "Protocol" "ExplorerPS/2"
Option "Protocol" "Auto"
# Option "Emulate3Buttons" "yes"
Option "ZAxisMapping" "6 7"
Option "Resolution" "800"
Option "Buttons" "4 5"
EndSection

xmodmap -e "pointer = 1 2 3 6 7 4 5"

No comments: