Announcement

Collapse
No announcement yet.

Logitech Marble Mouse

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Logitech Marble Mouse

    I usually follow the instructions here to get the mouse ball to function as a wheel but I can't get it to work in Kubuntu 17.10

    https://help.ubuntu.com/community/Lo...arblemouse_USB

    Any idea what's changed?

    Cheers.
    Constant change is here to stay!

    #2
    If anyone else needs this, I believe it needed these changes:

    sudo nano /usr/share/X11/xorg.conf.d/10-libinput.conf

    and add:

    Section "InputClass"
    Identifier "Marble Mouse"
    MatchProduct "Logitech USB Trackball"
    Driver "libinput"
    Option "ScrollMethod" "button"
    Option "ScrollButton" "8"
    Option "MiddleEmulation" "on"
    EndSection

    If that doesn't work, then try this:

    sudo nano /usr/share/X11/xorg.conf.d/10-evdev.conf

    Add:

    Section "InputClass"
    Identifier "Marble Mouse"
    MatchProduct "Logitech USB Trackball"
    Option "EmulateWheel" "true"
    Option "EmulateWheelButton" "8"
    Option "XAxisMapping" "6 7"
    Option "Emulate3Buttons" "true"
    EndSection

    In either case, change 8 to 9 if you want to use the right button to activate scroll on this line: Option "EmulateWheelButton" "8"
    Constant change is here to stay!

    Comment

    Working...
    X