hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
# This file is part of systemd.
|
|
|
|
#
|
|
|
|
# Database for the DPI setting of mice, trackballs, other pointer devices that
|
|
|
|
# cannot be queried directly.
|
|
|
|
#
|
|
|
|
# The lookup keys are composed in:
|
|
|
|
# 70-mouse.rules
|
|
|
|
#
|
|
|
|
# Note: The format of the "mouse:" prefix match key is a
|
|
|
|
# contract between the rules file and the hardware data, it might
|
|
|
|
# change in later revisions to support more or better matches, it
|
|
|
|
# is not necessarily expected to be a stable ABI.
|
|
|
|
#
|
|
|
|
# Match string format:
|
|
|
|
# mouse:<subsystem>:v<vid>p<pid>:name:<name>:
|
|
|
|
#
|
|
|
|
# Supported subsystems: usb, bluetooth
|
|
|
|
# vid/pid as 4-digit hex lowercase vendor/product
|
|
|
|
#
|
|
|
|
# if vid/pid is unavailable, use
|
|
|
|
# mouse:*:name:<name>:
|
|
|
|
# if name is unavailable, use
|
|
|
|
# mouse:<subsystem>:v<vid>p<pid>:*
|
|
|
|
#
|
|
|
|
# For example, the following 5 matches all match the same mouse:
|
|
|
|
# mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
|
|
|
|
# mouse:usb:*:name:Lenovo Optical USB Mouse:
|
|
|
|
# mouse:usb:v17efp6019:*
|
|
|
|
# mouse:*:name:Lenovo Optical USB Mouse:
|
|
|
|
#
|
2015-01-09 07:51:40 +08:00
|
|
|
# To add local entries, create a new file
|
|
|
|
# /etc/udev/hwdb.d/71-mouse-local.hwdb
|
|
|
|
# and add your rules there. To load the new rules execute (as root):
|
|
|
|
# udevadm hwdb --update
|
|
|
|
# udevadm trigger /dev/input/eventXX
|
|
|
|
# where /dev/input/eventXX is the mouse in question. If in
|
|
|
|
# doubt, simply use /dev/input/event* to reload all input rules.
|
|
|
|
#
|
2015-07-31 16:17:19 +08:00
|
|
|
# If your changes are generally applicable, preferably send them as a pull
|
|
|
|
# request to
|
2015-08-04 12:03:55 +08:00
|
|
|
# https://github.com/systemd/systemd
|
|
|
|
# or create a bug report on https://github.com/systemd/systemd/issues and
|
|
|
|
# include your new rules, a description of the device, and the output of
|
2015-01-09 07:51:40 +08:00
|
|
|
# udevadm info /dev/input/eventXX
|
|
|
|
# (or /dev/input/event*).
|
|
|
|
#
|
|
|
|
# Allowed properties are:
|
|
|
|
# MOUSE_DPI
|
|
|
|
# MOUSE_WHEEL_CLICK_ANGLE
|
|
|
|
#
|
|
|
|
#########################################
|
|
|
|
# MOUSE_DPI #
|
|
|
|
#########################################
|
|
|
|
#
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
# DPI settings are specified as
|
|
|
|
# MOUSE_DPI=<dpi>[@<frequency>]
|
|
|
|
#
|
|
|
|
# Where <dpi> is the resolution in dots per inch, and <frequency> the
|
2015-01-09 05:53:55 +08:00
|
|
|
# sampling frequency in Hz (optional). If a device supports dynamic
|
|
|
|
# frequency scaling, the maximum frequency should be used. For devices
|
|
|
|
# supporting multiple fixed frequencies, see below.
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
#
|
|
|
|
# The value of MOUSE_DPI is:
|
|
|
|
# - a single integer for single-resolution mice, e.g.
|
|
|
|
# MOUSE_DPI=800
|
|
|
|
# or, if the frequency is known:
|
|
|
|
# MOUSE_DPI=800@120
|
|
|
|
# - a space-separated list of resolutions for multi-resolution mice.
|
2014-12-11 00:41:54 +08:00
|
|
|
# The default resolution must be prefixed by an asterisk, the resolutions
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
# in the database must be as shipped by the manufacturer. e.g.
|
|
|
|
# MOUSE_DPI=400 *800 2000
|
|
|
|
#
|
|
|
|
# The order of resolutions is as configured by the HW manufacturer or in
|
|
|
|
# ascending order, whichever appropriate.
|
|
|
|
#
|
|
|
|
# The frequency must be given to either none or all resolutions. If the
|
2015-01-09 05:53:55 +08:00
|
|
|
# device supports multiple fixed frequencies, the order of items is
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
# MOUSE_DPI=r1@f1 r2@f1 r3@f1 r1@f2 r2@f2 r3@f2
|
|
|
|
#
|
|
|
|
# If the default manufacturer-set resolution is unclear, a resolution of
|
|
|
|
# 800 or 1000 should be set as default, if available. If neither is
|
|
|
|
# available, choose the "middle" resolution value of those available.
|
|
|
|
#
|
|
|
|
# The list may contain a single item which must be marked with an
|
|
|
|
# asterisk.
|
|
|
|
#
|
|
|
|
# Local changes to the a non-default resolution of the mouse (e.g. through
|
|
|
|
# third-party software) must not be entered into this file, use a local
|
|
|
|
# hwdb instead.
|
|
|
|
#
|
2015-01-09 07:51:40 +08:00
|
|
|
#########################################
|
|
|
|
# MOUSE_WHEEL_CLICK_ANGLE #
|
|
|
|
#########################################
|
|
|
|
#
|
|
|
|
# The angle in degrees per mouse wheel 'click', specified as
|
|
|
|
# MOUSE_WHEEL_CLICK_ANGLE=<degrees>
|
|
|
|
#
|
|
|
|
# Most mice have a 15 degree click stop (24 clicks per full rotation).
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
#
|
|
|
|
|
2014-12-13 07:16:45 +08:00
|
|
|
#
|
2015-04-23 09:10:04 +08:00
|
|
|
# Sort by brand, type (usb, bluetooth), DPI, frequency.
|
2014-12-13 07:16:45 +08:00
|
|
|
# For mice with switchable resolution, sort by the starred entry.
|
|
|
|
|
2015-06-04 14:05:08 +08:00
|
|
|
##########################################
|
|
|
|
# Apple
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# Apple MagicMouse
|
|
|
|
# Note: this device changes name once connected to a mac, the name ends up
|
|
|
|
# as $username`s mouse
|
|
|
|
mouse:bluetooth:v05acp030d:name:*:
|
|
|
|
MOUSE_DPI=1300@1000
|
|
|
|
|
2014-12-31 07:54:24 +08:00
|
|
|
##########################################
|
|
|
|
# Chicony
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# Chicony 2.4G Multimedia Wireless Kit MG-0919
|
|
|
|
mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
|
|
|
|
MOUSE_DPI=1000@142
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
##########################################
|
|
|
|
# Dell
|
|
|
|
##########################################
|
|
|
|
|
2015-09-02 04:01:22 +08:00
|
|
|
# Dell MUAR DEL7
|
|
|
|
mouse:usb:v413cp3012:name:Dell Dell USB Optical Mouse:
|
|
|
|
MOUSE_DPI=400@166
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Dell USB Laser Mouse
|
|
|
|
mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
|
|
|
|
MOUSE_DPI=1000@125
|
|
|
|
|
2014-12-31 08:03:39 +08:00
|
|
|
##########################################
|
|
|
|
# Fujitsu Siemens
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
mouse:usb:v0461p4d16:name:USB Optical Mouse:
|
|
|
|
MOUSE_DPI=500@125
|
|
|
|
|
2015-08-24 08:47:30 +08:00
|
|
|
##########################################
|
|
|
|
# HandShoe Mouse
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# HandShoe Mouse
|
|
|
|
mouse:usb:v192fp0916:name:USB Optical Mouse:
|
|
|
|
MOUSE_DPI=1000@128
|
|
|
|
|
|
|
|
##########################################
|
|
|
|
# HoverStop
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# Hoverstop active ergonomic mouse
|
|
|
|
mouse:usb:v088dp1234:name:HoverStop NL Hoverstop active ergonomic mouse:
|
|
|
|
MOUSE_DPI=400@129
|
|
|
|
|
2015-04-23 08:44:30 +08:00
|
|
|
##########################################
|
|
|
|
# HP
|
|
|
|
##########################################
|
|
|
|
|
2015-07-29 02:09:54 +08:00
|
|
|
# HP USB 1000dpi Laser Mouse
|
|
|
|
mouse:usb:v0458p0133:name:Mouse Laser Mouse:
|
|
|
|
MOUSE_DPI=1000@125
|
|
|
|
MOUSE_WHEEL_CLICK_ANGLE=15
|
|
|
|
|
2015-04-23 08:44:30 +08:00
|
|
|
# HP X1000
|
|
|
|
mouse:usb:v093ap2510:name:PixArt USB Optical Mouse:
|
2015-08-24 08:47:30 +08:00
|
|
|
mouse:usb:v093ap2510:name:PIXART USB OPTICAL MOUSE:
|
2015-04-23 08:44:30 +08:00
|
|
|
MOUSE_DPI=1000@125
|
|
|
|
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
##########################################
|
|
|
|
# Lenovo
|
|
|
|
##########################################
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Lenovo Optical USB Mouse
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
|
|
|
|
MOUSE_DPI=1000@125
|
|
|
|
|
2015-08-29 05:42:39 +08:00
|
|
|
# Lenovo M-U0025-O
|
|
|
|
mouse:usb:v17efp6019:name:Logitech Lenovo USB Optical Mouse:
|
|
|
|
MOUSE_DPI=1000@166
|
|
|
|
|
2014-12-11 00:38:47 +08:00
|
|
|
# ThinkPad USB Laser Mouse
|
|
|
|
mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
|
|
|
|
MOUSE_DPI=1200@125
|
|
|
|
|
2015-08-24 08:47:30 +08:00
|
|
|
# Lenovo Precision USB Mouse
|
|
|
|
mouse:usb:v17efp6050:name:Lenovo Precision USB Mouse:
|
|
|
|
MOUSE_DPI=1200@127
|
|
|
|
|
2015-08-29 05:42:39 +08:00
|
|
|
# Lenovo MOBGUL
|
|
|
|
mouse:usb:v17efp601d:name:Primax Lenovo Laser Mouse:
|
|
|
|
# Lenovo MOBGULA
|
|
|
|
mouse:usb:v17efp6045:name:Lenovo USB Laser Mouse:
|
|
|
|
MOUSE_DPI=1600@125
|
|
|
|
|
|
|
|
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
##########################################
|
|
|
|
# Logitech
|
|
|
|
##########################################
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Note: devices using the Logitech Unifying receiver will need two entries,
|
|
|
|
# one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
|
|
|
|
# model name. The usb vid/pid is the same for all those devices.
|
|
|
|
# Until 3.19 is available, this list just has the Wireless PID entry.
|
|
|
|
|
2014-12-13 07:20:51 +08:00
|
|
|
# Logitech M-BJ58 Optical Mouse
|
|
|
|
mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
|
2015-08-13 04:25:10 +08:00
|
|
|
# Logitech Mini Optical Mouse
|
|
|
|
mouse:usb:v046dpc016:name:Logitech Optical USB Mouse:
|
2014-12-13 07:20:51 +08:00
|
|
|
# Logitech MX310 Optical Mouse
|
|
|
|
mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech USB-PS/2 M-BT58
|
|
|
|
mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
|
2015-06-09 12:32:19 +08:00
|
|
|
# Logitech TrackMan Marble Wheel USB
|
|
|
|
mouse:usb:v046dpc401:name:Logitech USB-PS/2 Trackball:
|
2014-12-13 07:16:45 +08:00
|
|
|
MOUSE_DPI=400@125
|
|
|
|
|
2014-12-22 06:18:55 +08:00
|
|
|
# Lenovo USB mouse model MO28UOL
|
|
|
|
mouse:usb:v04b3p310c:name:USB Optical Mouse:
|
|
|
|
MOUSE_DPI=400@142
|
|
|
|
|
2015-06-23 13:51:02 +08:00
|
|
|
# Logitech M570 trackball
|
|
|
|
mouse:usb:v046dp1028:name:Logitech M570:
|
|
|
|
MOUSE_DPI=540@167
|
|
|
|
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech USB-PS/2 M-BZ96C
|
|
|
|
mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
|
|
|
|
MOUSE_DPI=600@125
|
|
|
|
|
2015-01-05 05:41:03 +08:00
|
|
|
# Logitech Wireless Mouse M325
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp400a:name:Logitech M325:
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
|
|
|
|
MOUSE_DPI=600@166
|
2015-01-16 09:11:10 +08:00
|
|
|
MOUSE_WHEEL_CLICK_ANGLE=20
|
2014-12-08 07:17:26 +08:00
|
|
|
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech MX400 Performance Laser Mouse
|
|
|
|
mouse:usb:v046dpc043:name:Logitech USB-PS/2 Optical Mouse:
|
2014-12-16 13:08:07 +08:00
|
|
|
# Logitech MX1000 Laser Cordless Mouse
|
|
|
|
mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
|
2014-12-08 07:17:26 +08:00
|
|
|
# Logitech Cordless Click! Plus
|
|
|
|
mouse:usb:v046dpc50e:name:Logitech USB Receiver:
|
2014-12-19 07:40:44 +08:00
|
|
|
# Logitech, Inc. RX 300 Optical Mouse
|
|
|
|
mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
|
2014-12-08 07:17:26 +08:00
|
|
|
MOUSE_DPI=800@125
|
|
|
|
|
2014-12-15 18:26:38 +08:00
|
|
|
# Logitech MX 518
|
|
|
|
mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
|
|
|
|
MOUSE_DPI=400@125 *800@125 1600@125
|
|
|
|
|
2015-01-09 05:45:34 +08:00
|
|
|
# Logitech, Inc. RX 250 Optical Mouse
|
|
|
|
mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
|
2015-08-29 05:44:01 +08:00
|
|
|
MOUSE_DPI=1000@142
|
2015-01-09 05:45:34 +08:00
|
|
|
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech Wireless Mouse M185
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp4008:name:Logitech M185:
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech Wireless Mouse M510
|
|
|
|
mouse:usb:v046dp1025:name:Logitech M510:
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech M705 (marathon mouse)
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp101b:name:Logitech M705:
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
|
|
|
|
MOUSE_DPI=800@166
|
|
|
|
|
2015-06-23 13:50:09 +08:00
|
|
|
# Logitech MX Revolution
|
|
|
|
mouse:usb:v046dpc51a:name:Logitech USB Receiver:
|
|
|
|
MOUSE_DPI=800@200
|
|
|
|
|
2015-03-05 18:29:56 +08:00
|
|
|
# Logitech G5 Laser Mouse
|
|
|
|
mouse:usb:v046dpc049:name:Logitech USB Gaming Mouse:
|
2014-12-08 07:17:26 +08:00
|
|
|
# Logitech G500s Laser Gaming Mouse
|
hwdb: add a new db for the DPI/frequency settings of mice
Pointer acceleration for relative input devices (mice, trackballs, etc.)
applies to the deltas of the device. Alas, those deltas have no physical
reference point - a delta of 10 may be caused by a large movement of a
low-dpi mouse or by a minute movement of a high-dpi mouse.
Which makes pointer acceleration a bit useless and high-dpi devices
essentially unusable.
In an ideal world, we could read the DPI from the device directly and work
with that. In the world we actually live in, we need to compile this list
manually. This patch introduces the database, with the usual match formats
and a single property to be set on a device: MOUSE_DPI
That is either a single value for most mice, or a list of values for mice
that can change resolution at runtime. The exact format is detailed in the
hwdb file.
Note that we're explicitly overshooting the requirements we have for
libinput atm. Frequency could be detected in software and we don't
actually use the list of multiple resolutions (because we can't detect
when they change anyway). However, we might as well collect those values
from the get-go, adding/modifying what will eventually amount to hundreds
of entries is a bit cumbersome.
Note: we rely on the input_id builtin to tag us as mouse first, ordering
of the rules is important.
(David: fixed up typos and moved hwdb file into ./hwdb/)
2014-11-25 19:35:16 +08:00
|
|
|
mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
|
|
|
|
MOUSE_DPI=400@500 *800@500 2000@500
|
2015-09-22 02:11:17 +08:00
|
|
|
|
2015-09-18 17:55:38 +08:00
|
|
|
# Logitech G9
|
|
|
|
mouse:usb:v046dpc048:name:Logitech G9 Laser Mouse:
|
2015-09-18 20:28:16 +08:00
|
|
|
MOUSE_DPI=400@1000 800@1000 *1600@1000
|
2015-09-18 17:55:38 +08:00
|
|
|
|
|
|
|
# Logitech G9x [Call of Duty MW3 Edition]
|
|
|
|
mouse:usb:v046dpc249:name:Logitech G9x Laser Mouse:
|
2015-09-22 03:56:10 +08:00
|
|
|
MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
|
2014-12-08 07:17:26 +08:00
|
|
|
|
2015-06-23 13:51:02 +08:00
|
|
|
# Logitech G400 (Wired)
|
|
|
|
mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
|
|
|
|
MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
|
|
|
|
|
|
|
|
# Logitech G400s (Wired)
|
|
|
|
mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
|
|
|
|
MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
|
|
|
|
|
2015-07-31 16:20:25 +08:00
|
|
|
# Logitech G402 Hyperion Fury
|
|
|
|
mouse:usb:v046dpc07e:name:Logitech Gaming Mouse G402:
|
|
|
|
MOUSE_DPI=400@1000 *800@1000 1600@1000 3200@1000
|
|
|
|
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech B605 Wireless Mouse (also M505)
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp101d:name:Logitech B605:
|
|
|
|
mouse:usb:v046dp101d:name:Logitech M505:
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
|
|
|
|
MOUSE_DPI=900@166
|
|
|
|
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech Cordless Desktop Wave Mouse
|
|
|
|
mouse:usb:v046dpc517:name:Logitech USB Receiver:
|
|
|
|
MOUSE_DPI=950@125
|
|
|
|
|
2014-12-13 07:20:51 +08:00
|
|
|
# Logitech RX1000 Laser Mouse
|
|
|
|
mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
|
|
|
|
# Logitech M100 Optical Mouse
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
|
2014-12-31 21:28:52 +08:00
|
|
|
# Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
|
|
|
|
mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech V500 Cordless Notebook Mouse
|
|
|
|
mouse:usb:v046dpc510:name:Logitech USB Receiver:
|
2014-12-13 07:16:45 +08:00
|
|
|
MOUSE_DPI=1000@125
|
|
|
|
|
2015-09-02 04:01:22 +08:00
|
|
|
# Logitech V220 Cordless Optical Mouse
|
|
|
|
mouse:usb:v046dpc51b:name:Logitech USB Receiver:
|
2015-08-31 12:53:07 +08:00
|
|
|
# Logitech Performance MX
|
|
|
|
mouse:usb:v046dp101a:name:Logitech Performance MX:
|
2015-07-14 05:34:19 +08:00
|
|
|
# Logitech MX Master
|
|
|
|
mouse:usb:v046dp4041:name:Logitech MX Master:
|
|
|
|
MOUSE_DPI=1000@166
|
|
|
|
|
2014-12-31 07:56:16 +08:00
|
|
|
# Logitech MK260 Wireless Combo Receiver aka M-R0011
|
|
|
|
mouse:usb:v046dpc52e:name:Logitech USB Receiver:
|
|
|
|
MOUSE_DPI=1000@200
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Logitech G700 Laser Mouse (Wired)
|
|
|
|
mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
|
|
|
|
# Logitech G700 Laser Mouse (Wireless)
|
|
|
|
mouse:usb:v046dpc531:name:Logitech USB Receiver:
|
|
|
|
MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
|
|
|
|
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech Wireless Mouse M310
|
|
|
|
mouse:usb:v046dp1024:name:Logitech M310:
|
|
|
|
MOUSE_DPI=1100@168
|
|
|
|
|
2014-12-31 08:07:28 +08:00
|
|
|
# Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
|
|
|
|
mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
|
2015-01-10 03:28:32 +08:00
|
|
|
# Logitech USB Laser Mouse M-U0007
|
|
|
|
mouse:usb:v046dpc069:name:Logitech USB Laser Mouse:
|
2014-12-31 08:07:28 +08:00
|
|
|
MOUSE_DPI=1200@125
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Logitech T620 (or, the soap)
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp4027:name:Logitech T620:
|
2014-12-08 07:17:26 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
|
|
|
|
MOUSE_DPI=1200@250
|
|
|
|
|
2015-08-05 04:12:35 +08:00
|
|
|
# Logitech LX8 Cordless Laser Mouse
|
|
|
|
mouse:usb:v046dpc51b:name:Logitech USB Receiver:
|
|
|
|
MOUSE_DPI=1300@125
|
|
|
|
MOUSE_WHEEL_CLICK_ANGLE=15
|
|
|
|
|
2014-12-13 07:16:45 +08:00
|
|
|
# Logitech ZoneTouch Mouse T400
|
2015-06-10 11:53:51 +08:00
|
|
|
mouse:usb:v046dp4026:name:Logitech T400:
|
2014-12-13 07:16:45 +08:00
|
|
|
mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
|
|
|
|
MOUSE_DPI=1300@166
|
2014-12-10 22:46:08 +08:00
|
|
|
|
2015-08-06 07:15:05 +08:00
|
|
|
# Logitech G500 Mouse
|
|
|
|
mouse:usb:v046dpc068:name:Logitech G500:
|
|
|
|
MOUSE_DPI=*1600@500 2600@500 3600@500
|
|
|
|
|
2015-08-28 03:17:15 +08:00
|
|
|
# Logitech MX1000 Laser Cordless Mouse
|
|
|
|
mouse:bluetooth:v046dpb003:name:Logitech MX1000 mouse:
|
|
|
|
MOUSE_DPI=800@80
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Logitech Ultrathin Touch Mouse
|
|
|
|
mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
|
|
|
|
MOUSE_DPI=1000@1000
|
|
|
|
|
2015-08-13 04:25:10 +08:00
|
|
|
# ImPS/2 Logitech Wheel Mouse
|
|
|
|
mouse:ps2:*:name:ImPS/2 Logitech Wheel Mouse:
|
|
|
|
MOUSE_DPI=400@100
|
|
|
|
|
2014-12-23 08:14:19 +08:00
|
|
|
# ImExPS/2 Logitech Wheel Mouse
|
|
|
|
mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
|
|
|
|
MOUSE_DPI=400@250
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
##########################################
|
|
|
|
# Microsoft
|
|
|
|
##########################################
|
|
|
|
|
2015-02-17 00:14:20 +08:00
|
|
|
mouse:usb:v045ep0040:name:Microsoft Microsoft 3-Button Mouse with IntelliEye(TM):
|
2015-02-15 03:37:40 +08:00
|
|
|
MOUSE_DPI=400@125
|
|
|
|
|
2014-12-11 15:33:14 +08:00
|
|
|
# Note: unsure that these work, it's likely that all devices on these
|
|
|
|
# receivers show up with the same vid/pid/name
|
|
|
|
|
2015-08-13 04:25:10 +08:00
|
|
|
# Microsoft Wireless Mouse 5000
|
|
|
|
mouse:usb:v045ep0745:name:Microsoft Microsoft® 2.4GHz Transceiver v6.0:
|
|
|
|
MOUSE_DPI=800@142
|
|
|
|
|
2015-09-02 04:01:22 +08:00
|
|
|
# Microsoft Wireless Mobile Mouse 4000
|
|
|
|
mouse:usb:v045ep0745:name:Microsoft Microsoft® Nano Transceiver v2.0:
|
2014-12-11 15:33:14 +08:00
|
|
|
# Microsoft Sculpt Ergonomic Mouse
|
|
|
|
mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
|
|
|
|
MOUSE_DPI=1000@142
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
# Microsoft Arc Touch Mouse USB
|
|
|
|
mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
|
|
|
|
MOUSE_DPI=1400@142
|
|
|
|
|
2014-12-24 05:53:40 +08:00
|
|
|
# Microsoft Wireless Laser Mouse 8000
|
|
|
|
mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
|
|
|
|
MOUSE_DPI=1000@1000
|
|
|
|
|
2015-05-21 13:39:11 +08:00
|
|
|
# Microsoft Arc Touch Mouse SE:
|
|
|
|
mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE:
|
|
|
|
MOUSE_DPI=1000@2000
|
|
|
|
|
2015-09-03 06:56:57 +08:00
|
|
|
##########################################
|
|
|
|
# Mionix
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
#Mionix Avior 7000
|
|
|
|
mouse:usb:v22d4p1308:name:Laview Technology Mionix Avior 7000:
|
|
|
|
MOUSE_DPI=400@1000 *1600@1000 7000@1000
|
|
|
|
MOUSE_WHEEL_CLICK_ANGLE=15
|
|
|
|
|
2014-12-08 07:17:26 +08:00
|
|
|
##########################################
|
|
|
|
# Oklick
|
|
|
|
##########################################
|
|
|
|
|
2014-12-26 07:20:48 +08:00
|
|
|
# Oklick 406S Bluetooth Laser Mouse
|
2014-12-08 07:17:26 +08:00
|
|
|
mouse:bluetooth:v056ep0061:name:Laser BTmouse:
|
|
|
|
MOUSE_DPI=*800@333 1600@333
|
2014-12-26 07:20:48 +08:00
|
|
|
|
|
|
|
##########################################
|
|
|
|
# Razer
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# Razer Abyssus
|
|
|
|
mouse:usb:v1532p0042:name:Razer Razer Abyssus:
|
|
|
|
MOUSE_DPI=3500@1000
|
2015-04-04 04:20:55 +08:00
|
|
|
|
|
|
|
##########################################
|
|
|
|
# Roccat
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
# Roccat Lua (ROC-11-310)
|
|
|
|
mouse:usb:v1e7dp2c2e:name:ROCCAT ROCCAT Lua:
|
|
|
|
MOUSE_DPI=250@125 500@125 1000@125 1250@125 1500@125 1750@125 2000@125 250@250 500@250 1000@250 1250@250 1500@250 1750@250 2000@250 250@500 500@500 1000@500 1250@500 1500@500 1750@500 2000@500 250@1000 500@1000 *1000@1000 1250@1000 1500@1000 1750@1000 2000@1000
|
|
|
|
MOUSE_WHEEL_CLICK_ANGLE=15
|