在 ubuntu 20.10 上配置 Logitech Trackman Marble

在 ubuntu 20.10 上配置 Logitech Trackman Marble

我正在使用 i3 窗口管理器,但不确定如何配置 Trackman。我找到了这个链接,但它很令人困惑:https://wiki.archlinux.org/index.php/Logitech_Marble_Mouse

有没有关于如何设置鼠标的明确说明?更具体地说,我感兴趣的是将小左按钮旋转为垂直滚动条,而不是默认的(浏览器中的左侧导航)。

在 Ubuntu 16.04 上,我曾经将其添加到 /usr/share/X11/xorg.conf.d/50-marblemouse.conf

  Section "InputClass"
      Identifier      "Marble Mouse"
      MatchProduct    "Logitech USB Trackball"
      MatchIsPointer  "on"
      MatchDevicePath "/dev/input/event*"
      Driver          "evdev"
      Option          "SendCoreEvents" "true"

      #  Physical buttons come from the mouse as:
      #     Big:   1 3
      #     Small: 8 9
      #
      # This makes left small button (8) into the middle click and scroll

      Option "Buttons"            "8"
      Option "ButtonMapping"      "1 8 3 4 5 6 7 2 9"
      Option "EmulateWheel"       "true"
      Option "EmulateWheelButton" "8"
      Option "YAxisMapping"       "4 5"
      Option "XAxisMapping"       "6 7"

  EndSection

但上面的链接谈论的是不同的文件和不同的内容。

答案1

以下链接更详细地介绍了 Ubuntu 中 Logitech Trackman Marble 的相关内容。希望对您有所帮助。

https://help.ubuntu.com/community/Logitech_Marblemouse_USB

相关内容