]> git.ipfire.org Git - thirdparty/systemd.git/blame - hwdb/70-mouse.hwdb
bus-proxy-test: show parsed system/session policy
[thirdparty/systemd.git] / hwdb / 70-mouse.hwdb
CommitLineData
0213a26f
PH
1# This file is part of systemd.
2#
3# Database for the DPI setting of mice, trackballs, other pointer devices that
4# cannot be queried directly.
5#
6# The lookup keys are composed in:
7# 70-mouse.rules
8#
9# Note: The format of the "mouse:" prefix match key is a
10# contract between the rules file and the hardware data, it might
11# change in later revisions to support more or better matches, it
12# is not necessarily expected to be a stable ABI.
13#
14# Match string format:
15# mouse:<subsystem>:v<vid>p<pid>:name:<name>:
16#
17# Supported subsystems: usb, bluetooth
18# vid/pid as 4-digit hex lowercase vendor/product
19#
20# if vid/pid is unavailable, use
21# mouse:*:name:<name>:
22# if name is unavailable, use
23# mouse:<subsystem>:v<vid>p<pid>:*
24#
25# For example, the following 5 matches all match the same mouse:
26# mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
27# mouse:usb:*:name:Lenovo Optical USB Mouse:
28# mouse:usb:v17efp6019:*
29# mouse:*:name:Lenovo Optical USB Mouse:
30#
31# DPI settings are specified as
32# MOUSE_DPI=<dpi>[@<frequency>]
33#
34# Where <dpi> is the resolution in dots per inch, and <frequency> the
3a8d368a
PH
35# sampling frequency in Hz (optional). If a device supports dynamic
36# frequency scaling, the maximum frequency should be used. For devices
37# supporting multiple fixed frequencies, see below.
0213a26f
PH
38#
39# The value of MOUSE_DPI is:
40# - a single integer for single-resolution mice, e.g.
41# MOUSE_DPI=800
42# or, if the frequency is known:
43# MOUSE_DPI=800@120
44# - a space-separated list of resolutions for multi-resolution mice.
8c67d0a7 45# The default resolution must be prefixed by an asterisk, the resolutions
0213a26f
PH
46# in the database must be as shipped by the manufacturer. e.g.
47# MOUSE_DPI=400 *800 2000
48#
49# The order of resolutions is as configured by the HW manufacturer or in
50# ascending order, whichever appropriate.
51#
52# The frequency must be given to either none or all resolutions. If the
3a8d368a 53# device supports multiple fixed frequencies, the order of items is
0213a26f
PH
54# MOUSE_DPI=r1@f1 r2@f1 r3@f1 r1@f2 r2@f2 r3@f2
55#
56# If the default manufacturer-set resolution is unclear, a resolution of
57# 800 or 1000 should be set as default, if available. If neither is
58# available, choose the "middle" resolution value of those available.
59#
60# The list may contain a single item which must be marked with an
61# asterisk.
62#
63# Local changes to the a non-default resolution of the mouse (e.g. through
64# third-party software) must not be entered into this file, use a local
65# hwdb instead.
66#
67# To add local entries, create a new file
68# /etc/udev/hwdb.d/71-mouse-local.hwdb
69# and add your rules there. To load the new rules execute (as root):
70# udevadm hwdb --update
71# udevadm trigger /dev/input/eventXX
72# where /dev/input/eventXX is the mouse in question. If in
73# doubt, simply use /dev/input/event* to reload all input rules.
74#
75# If your changes are generally applicable, open a bug report on
76# http://bugs.freedesktop.org/enter_bug.cgi?product=systemd
77# and include your new rules, a description of the device, and the
78# output of
79# udevadm info /dev/input/eventXX
80# (or /dev/input/event*).
81
7731320a
ZJS
82#
83# Sort by by brand, type (usb, bluetooth), DPI, frequency.
84# For mice with switchable resolution, sort by the starred entry.
85
af157cf8
CB
86##########################################
87# Chicony
88##########################################
89
90# Chicony 2.4G Multimedia Wireless Kit MG-0919
91mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
92 MOUSE_DPI=1000@142
93
eb59c75e
PH
94##########################################
95# Dell
96##########################################
97
98# Dell USB Laser Mouse
99mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
100 MOUSE_DPI=1000@125
101
eaa5a98f
CB
102##########################################
103# Fujitsu Siemens
104##########################################
105
106mouse:usb:v0461p4d16:name:USB Optical Mouse:
107 MOUSE_DPI=500@125
108
0213a26f
PH
109##########################################
110# Lenovo
111##########################################
112
eb59c75e 113# Lenovo Optical USB Mouse
0213a26f
PH
114mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
115 MOUSE_DPI=1000@125
116
40dba702
LP
117# ThinkPad USB Laser Mouse
118mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
119 MOUSE_DPI=1200@125
120
0213a26f
PH
121##########################################
122# Logitech
123##########################################
124
eb59c75e
PH
125# Note: devices using the Logitech Unifying receiver will need two entries,
126# one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
127# model name. The usb vid/pid is the same for all those devices.
128# Until 3.19 is available, this list just has the Wireless PID entry.
129
e31fc141
ZJS
130# Logitech M-BJ58 Optical Mouse
131mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
132# Logitech MX310 Optical Mouse
133mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
7731320a
ZJS
134# Logitech USB-PS/2 M-BT58
135mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
136 MOUSE_DPI=400@125
137
c470b44f
FT
138# Lenovo USB mouse model MO28UOL
139mouse:usb:v04b3p310c:name:USB Optical Mouse:
140 MOUSE_DPI=400@142
141
7731320a
ZJS
142# Logitech USB-PS/2 M-BZ96C
143mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
144 MOUSE_DPI=600@125
145
abd440cd 146# Logitech Wireless Mouse M325
7731320a
ZJS
147mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
148 MOUSE_DPI=600@166
eb59c75e 149
6a057a99
PH
150# Logitech MX1000 Laser Cordless Mouse
151mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
eb59c75e
PH
152# Logitech Cordless Click! Plus
153mouse:usb:v046dpc50e:name:Logitech USB Receiver:
17134776
TJ
154# Logitech, Inc. RX 300 Optical Mouse
155mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
eb59c75e
PH
156 MOUSE_DPI=800@125
157
de72f11b
HH
158# Logitech MX 518
159mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
160 MOUSE_DPI=400@125 *800@125 1600@125
161
dba76359
ZJS
162# Logitech, Inc. RX 250 Optical Mouse
163mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
164 MOUSE_DPI=800@142
165
6366e349
166# Logitech G400 (Wired)
167mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
168 MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
5ebbc3f3 169
f9e35b2e
DM
170# Logitech G400s (Wired)
171mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
172 MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
173
7731320a
ZJS
174# Logitech Wireless Mouse M185
175mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
176# Logitech M705 (marathon mouse)
177mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
178 MOUSE_DPI=800@166
179
eb59c75e 180# Logitech G500s Laser Gaming Mouse
0213a26f
PH
181mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
182 MOUSE_DPI=400@500 *800@500 2000@500
eb59c75e 183
7731320a
ZJS
184# Logitech B605 Wireless Mouse (also M505)
185mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
186 MOUSE_DPI=900@166
187
e31fc141
ZJS
188# Logitech RX1000 Laser Mouse
189mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
190# Logitech M100 Optical Mouse
7731320a 191mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
bf66fe26
CB
192# Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
193mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
7731320a
ZJS
194 MOUSE_DPI=1000@125
195
149ff903
CB
196# Logitech MK260 Wireless Combo Receiver aka M-R0011
197mouse:usb:v046dpc52e:name:Logitech USB Receiver:
198 MOUSE_DPI=1000@200
199
eb59c75e
PH
200# Logitech G700 Laser Mouse (Wired)
201mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
202# Logitech G700 Laser Mouse (Wireless)
203mouse:usb:v046dpc531:name:Logitech USB Receiver:
204 MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
205
bdd31644
CB
206# Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
207mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
208 MOUSE_DPI=1200@125
209
eb59c75e
PH
210# Logitech T620 (or, the soap)
211mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
212 MOUSE_DPI=1200@250
213
7731320a
ZJS
214# Logitech ZoneTouch Mouse T400
215mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
216 MOUSE_DPI=1300@166
85c24db1 217
eb59c75e
PH
218# Logitech Ultrathin Touch Mouse
219mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
220 MOUSE_DPI=1000@1000
221
60329a9d
PH
222# ImExPS/2 Logitech Wheel Mouse
223mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
224 MOUSE_DPI=400@250
225
eb59c75e
PH
226##########################################
227# Microsoft
228##########################################
229
b631b481
PH
230# Note: unsure that these work, it's likely that all devices on these
231# receivers show up with the same vid/pid/name
232
233# Microsoft Sculpt Ergonomic Mouse
234mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
235 MOUSE_DPI=1000@142
236
eb59c75e
PH
237# Microsoft Arc Touch Mouse USB
238mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
239 MOUSE_DPI=1400@142
240
2c561af2
FT
241# Microsoft Wireless Laser Mouse 8000
242mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
243 MOUSE_DPI=1000@1000
244
eb59c75e
PH
245##########################################
246# Oklick
247##########################################
248
0068de37 249# Oklick 406S Bluetooth Laser Mouse
eb59c75e
PH
250mouse:bluetooth:v056ep0061:name:Laser BTmouse:
251 MOUSE_DPI=*800@333 1600@333
0068de37
TG
252
253##########################################
254# Razer
255##########################################
256
257# Razer Abyssus
258mouse:usb:v1532p0042:name:Razer Razer Abyssus:
259 MOUSE_DPI=3500@1000