On Sun, 25 Feb 2007 the mental interface of
Antonio-M. Corbi Bellot told:

> Elimar Riesebieter <[EMAIL PROTECTED]> writes:
> 
> Hi Elimar:
> 
> I'm also trying to make work horizontal scrolling with the mighty mouse
> but no luck :(
> 
> When I saw your post quickly tried your section for the mmouse:
> > xorg.conf:
> > .....
> > Section "InputDevice"
> >  Identifier "Mighty Mouse"
> >  Driver "evdev"
> >  Option "Device" "/dev/input/mightymouse"
> >  Option "Dev Name" "Primax Electronics Apple Optical USB Mouse" #cat 
> > /proc/bus/input/devices
> >  Option "Dev Phys" "usb-*/input0" #cat /proc/bus/input/devices
> > EndSection

The above doesn't work. I figured out that
- We don't need udev
- xserver-xorg-input-evdev does its job by

Section "InputDevice"
   Identifier  "Mighty Mouse"
   Driver      "evdev"
   Option      "SendCoreEvents"
   Option      "Name" "Primax Electronics Apple Optical USB Mouse"
   Option      "Phys" "usb-*/input0"
EndSection

The entries of "Name" and "Phys" can be triggerd by 
# cat /proc/bus/input/devices
Option      "Phys" "usb-*/input0" should be allways ok, though

I attached my xorg.conf FYI.

Let me know whether it works... ;)

Elimar

PS: If you want iceweasel doing hor scroll call the URL:
about:config

and set
mousewheel.horizscroll.withnokey.action = 0
mousewheel.horizscroll.withnokey.numlines = 1
mousewheel.horizscroll.withnokey.sysnumlines = true

:wq

-- 
  Never make anything simple and efficient when a way 
  can be found to make it complex and wonderful ;-)
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86
Section "Files"
        FontPath        "unix/:7100"                    # local font server
        FontPath        "unix/:7101"                    # local ttf-font server
        # if the local font server has problems, we can fall back on these
        #FontPath       "/usr/lib/X11/fonts/misc"
        #FontPath       "/usr/lib/X11/fonts/cyrillic"
        #FontPath       "/usr/lib/X11/fonts/100dpi/:unscaled"
        #FontPath       "/usr/lib/X11/fonts/75dpi/:unscaled"
        #FontPath       "/usr/lib/X11/fonts/Type1"
        #FontPath       "/usr/lib/X11/fonts/CID"
        #FontPath       "/usr/lib/X11/fonts/Speedo"
        #FontPath       "/usr/lib/X11/fonts/100dpi"
        #FontPath       "/usr/lib/X11/fonts/75dpi"
EndSection

Section "ServerFlags"
        Option  "AllowMouseOpenFail"
        Option  "NoPM"  "yes"
EndSection

Section "Module"
        #Load   "GLcore"
        Load    "type1"
        #Load   "speedo"
        Load    "extmod"
        Load    "freetype"
        Load    "glx"
        Load    "dri"
        Load    "dbe"
        Load    "xtrap"
        Load    "synaptics"
        Load    "evdev"
EndSection

##Section "InputDevice"
#       Identifier      "Generic Keyboard"
#       Driver          "kbd"
#       Option          "CoreKeyboard"
#       Option          "LeftAlt"       "Meta"
#       Option          "RightAlt"      "Meta"
#       Option          "ScrollLock"    "Compose"
#       Option          "RightCtl"      "Control"
#       Option          "XkbRules"      "xorg"
#       Option          "XkbModel"      "macintosh"
##      Option          "XkbModel"      "pc105"
#       Option          "XkbLayout"     "de"
#       Option          "XkbVariant"    "nodeadkeys"
##      Option          "XkbOptions"    "ctrl:nocaps"
#EndSection


Section "InputDevice"
       Identifier      "Generic Keyboard"
       Driver          "kbd"
       Option          "CoreKeyboard"
       Option          "XkbRules"      "xorg"
       Option         "XkbModel"      "macintosh"
       #Option          "XkbModel"      "ibook"
       Option          "XkbLayout"     "de"
       Option          "XkbVariant"    "nodeadkeys"
       Option          "XkbOptions"    "lv3:lwin_switch"
EndSection

## 1 Button Mouse Bluetooth
Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ExplorerPS/2"
#       #Option         "Protocol"              "evdev"
        #Option         "Protocol"              "ImPS/2"
        #Option         "Emulate3Buttons"       "true"
        #Option         "ZAxisMapping"          "4 5"
EndSection

Section "InputDevice"
        Identifier      "Mighty Mouse"
        Driver          "evdev"
        Option          "SendCoreEvents"
        #Option         "Device"   "/dev/input/event6"
        Option          "Name" "Primax Electronics Apple Optical USB Mouse" 
#cat /proc/bus/input/devices
        Option          "Phys" "usb-*/input0" #cat /proc/bus/input/devices
EndSection

Section "InputDevice"
                Identifier      "Synaptics Touchpad"
                Driver          "synaptics"
                Option          "SendCoreEvents"        "true"
                Option          "Device"                "/dev/input/event5"
                Option          "Protocol"              "auto-dev"
                Option          "LeftEdge"              "0"
                Option          "RightEdge"             "850"
                Option          "TopEdge"               "0"
                Option          "BottomEdge"            "645"
                Option          "MinSpeed"              "0.4"
                Option          "MaxSpeed"              "1"
                Option          "AccelFactor"           "0.02"
                Option          "FingerLow"             "55"
                Option          "FingerHigh"            "60"
                Option          "MaxTapMove"            "20"
                Option          "MaxTapTime"            "100"
                Option          "HorizScrollDelta"      "0"
                Option          "VertScrollDelta"       "30"
                Option          "SHMConfig"             "yes"
        EndSection

Section "Device"
        Identifier      "ATI Technologies, Inc. RV350 [Mobility Radeon 9600 
M10]"
        BusID           "PCI:0:16:0"
        Driver          "ati"
        #Driver          "fbdev"
        Option          "MergedFB"           "no"
        Option          "UseFBDev"           "yes" #Doesn't work with 6.6.2
        #Option          "AGPSize" "16" # Not found in any description?
        Option          "AGPMode" "4"
EndSection

Section "Monitor"
        Identifier      "Standardbildschirm"
#       HorizSync       30-60
#       VertRefresh     50-75
        DisplaySize     323 216
        Option          "DPMS"
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Technologies, Inc. RV350 [Mobility Radeon 9600 
M10]"
        Monitor         "Standardbildschirm"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           32
                Modes           "1280x854" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Synaptics Touchpad"
        InputDevice     "Configured Mouse"
        InputDevice     "Mighty Mouse"
#        InputDevice     "Mouse[2]"
EndSection

Section "Extensions"
        Option  "Composite"     "Enable"
        Option  "RENDER"        "Enable"
EndSection

Section "Dri"
        group   "video"
        Mode    0660
EndSection

Attachment: pgpQpZyniTuZT.pgp
Description: PGP signature

Reply via email to