]> git.ipfire.org Git - thirdparty/systemd.git/blame - hwdb/70-mouse.hwdb
hwdb: add DPI data for a few Logitech mice
[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#
011c7034
PH
31# To add local entries, create a new file
32# /etc/udev/hwdb.d/71-mouse-local.hwdb
33# and add your rules there. To load the new rules execute (as root):
34# udevadm hwdb --update
35# udevadm trigger /dev/input/eventXX
36# where /dev/input/eventXX is the mouse in question. If in
37# doubt, simply use /dev/input/event* to reload all input rules.
38#
8601a85c
AK
39# If your changes are generally applicable, preferably send them as a pull
40# request to
195c9e37
ZJS
41# https://github.com/systemd/systemd
42# or create a bug report on https://github.com/systemd/systemd/issues and
43# include your new rules, a description of the device, and the output of
011c7034
PH
44# udevadm info /dev/input/eventXX
45# (or /dev/input/event*).
46#
47# Allowed properties are:
48# MOUSE_DPI
49# MOUSE_WHEEL_CLICK_ANGLE
50#
51#########################################
52# MOUSE_DPI #
53#########################################
54#
0213a26f
PH
55# DPI settings are specified as
56# MOUSE_DPI=<dpi>[@<frequency>]
57#
58# Where <dpi> is the resolution in dots per inch, and <frequency> the
3a8d368a
PH
59# sampling frequency in Hz (optional). If a device supports dynamic
60# frequency scaling, the maximum frequency should be used. For devices
61# supporting multiple fixed frequencies, see below.
0213a26f
PH
62#
63# The value of MOUSE_DPI is:
64# - a single integer for single-resolution mice, e.g.
65# MOUSE_DPI=800
66# or, if the frequency is known:
67# MOUSE_DPI=800@120
68# - a space-separated list of resolutions for multi-resolution mice.
8c67d0a7 69# The default resolution must be prefixed by an asterisk, the resolutions
0213a26f
PH
70# in the database must be as shipped by the manufacturer. e.g.
71# MOUSE_DPI=400 *800 2000
72#
73# The order of resolutions is as configured by the HW manufacturer or in
74# ascending order, whichever appropriate.
75#
76# The frequency must be given to either none or all resolutions. If the
3a8d368a 77# device supports multiple fixed frequencies, the order of items is
0213a26f
PH
78# MOUSE_DPI=r1@f1 r2@f1 r3@f1 r1@f2 r2@f2 r3@f2
79#
80# If the default manufacturer-set resolution is unclear, a resolution of
81# 800 or 1000 should be set as default, if available. If neither is
82# available, choose the "middle" resolution value of those available.
83#
84# The list may contain a single item which must be marked with an
85# asterisk.
86#
87# Local changes to the a non-default resolution of the mouse (e.g. through
88# third-party software) must not be entered into this file, use a local
89# hwdb instead.
90#
011c7034
PH
91#########################################
92# MOUSE_WHEEL_CLICK_ANGLE #
93#########################################
94#
95# The angle in degrees per mouse wheel 'click', specified as
96# MOUSE_WHEEL_CLICK_ANGLE=<degrees>
97#
98# Most mice have a 15 degree click stop (24 clicks per full rotation).
0213a26f 99#
0213a26f 100
7731320a 101#
47d36b7c 102# Sort by brand, type (usb, bluetooth), DPI, frequency.
7731320a
ZJS
103# For mice with switchable resolution, sort by the starred entry.
104
68a6ac91
PH
105##########################################
106# Apple
107##########################################
108
109# Apple MagicMouse
110# Note: this device changes name once connected to a mac, the name ends up
111# as $username`s mouse
112mouse:bluetooth:v05acp030d:name:*:
113 MOUSE_DPI=1300@1000
114
af157cf8
CB
115##########################################
116# Chicony
117##########################################
118
119# Chicony 2.4G Multimedia Wireless Kit MG-0919
120mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
121 MOUSE_DPI=1000@142
122
eb59c75e
PH
123##########################################
124# Dell
125##########################################
126
127# Dell USB Laser Mouse
128mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
129 MOUSE_DPI=1000@125
130
eaa5a98f
CB
131##########################################
132# Fujitsu Siemens
133##########################################
134
135mouse:usb:v0461p4d16:name:USB Optical Mouse:
136 MOUSE_DPI=500@125
137
fb8ab3c8
PH
138##########################################
139# HandShoe Mouse
140##########################################
141
142# HandShoe Mouse
143mouse:usb:v192fp0916:name:USB Optical Mouse:
144 MOUSE_DPI=1000@128
145
146##########################################
147# HoverStop
148##########################################
149
150# Hoverstop active ergonomic mouse
151mouse:usb:v088dp1234:name:HoverStop NL Hoverstop active ergonomic mouse:
152 MOUSE_DPI=400@129
153
e8043cd5
PH
154##########################################
155# HP
156##########################################
157
d78dfff2
TA
158# HP USB 1000dpi Laser Mouse
159mouse:usb:v0458p0133:name:Mouse Laser Mouse:
160 MOUSE_DPI=1000@125
161 MOUSE_WHEEL_CLICK_ANGLE=15
162
e8043cd5
PH
163# HP X1000
164mouse:usb:v093ap2510:name:PixArt USB Optical Mouse:
fb8ab3c8 165mouse:usb:v093ap2510:name:PIXART USB OPTICAL MOUSE:
e8043cd5
PH
166 MOUSE_DPI=1000@125
167
0213a26f
PH
168##########################################
169# Lenovo
170##########################################
171
eb59c75e 172# Lenovo Optical USB Mouse
0213a26f
PH
173mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
174 MOUSE_DPI=1000@125
175
40dba702
LP
176# ThinkPad USB Laser Mouse
177mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
178 MOUSE_DPI=1200@125
179
fb8ab3c8
PH
180# Lenovo Precision USB Mouse
181mouse:usb:v17efp6050:name:Lenovo Precision USB Mouse:
182 MOUSE_DPI=1200@127
183
0213a26f
PH
184##########################################
185# Logitech
186##########################################
187
eb59c75e
PH
188# Note: devices using the Logitech Unifying receiver will need two entries,
189# one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
190# model name. The usb vid/pid is the same for all those devices.
191# Until 3.19 is available, this list just has the Wireless PID entry.
192
e31fc141
ZJS
193# Logitech M-BJ58 Optical Mouse
194mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
6b829ddd
TA
195# Logitech Mini Optical Mouse
196mouse:usb:v046dpc016:name:Logitech Optical USB Mouse:
e31fc141
ZJS
197# Logitech MX310 Optical Mouse
198mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
7731320a
ZJS
199# Logitech USB-PS/2 M-BT58
200mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
5967bda0
PH
201# Logitech TrackMan Marble Wheel USB
202mouse:usb:v046dpc401:name:Logitech USB-PS/2 Trackball:
7731320a
ZJS
203 MOUSE_DPI=400@125
204
c470b44f
FT
205# Lenovo USB mouse model MO28UOL
206mouse:usb:v04b3p310c:name:USB Optical Mouse:
207 MOUSE_DPI=400@142
208
1cbcfd3e
PH
209# Logitech M570 trackball
210mouse:usb:v046dp1028:name:Logitech M570:
211 MOUSE_DPI=540@167
212
7731320a
ZJS
213# Logitech USB-PS/2 M-BZ96C
214mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
215 MOUSE_DPI=600@125
216
abd440cd 217# Logitech Wireless Mouse M325
7a37956e 218mouse:usb:v046dp400a:name:Logitech M325:
7731320a
ZJS
219mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
220 MOUSE_DPI=600@166
b333117c 221 MOUSE_WHEEL_CLICK_ANGLE=20
eb59c75e 222
95a0e128
SP
223# Logitech MX400 Performance Laser Mouse
224mouse:usb:v046dpc043:name:Logitech USB-PS/2 Optical Mouse:
6a057a99
PH
225# Logitech MX1000 Laser Cordless Mouse
226mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
eb59c75e
PH
227# Logitech Cordless Click! Plus
228mouse:usb:v046dpc50e:name:Logitech USB Receiver:
17134776
TJ
229# Logitech, Inc. RX 300 Optical Mouse
230mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
eb59c75e
PH
231 MOUSE_DPI=800@125
232
de72f11b
HH
233# Logitech MX 518
234mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
235 MOUSE_DPI=400@125 *800@125 1600@125
236
dba76359
ZJS
237# Logitech, Inc. RX 250 Optical Mouse
238mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
239 MOUSE_DPI=800@142
240
7731320a 241# Logitech Wireless Mouse M185
7a37956e 242mouse:usb:v046dp4008:name:Logitech M185:
7731320a 243mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
95a0e128
SP
244# Logitech Wireless Mouse M510
245mouse:usb:v046dp1025:name:Logitech M510:
7731320a 246# Logitech M705 (marathon mouse)
7a37956e 247mouse:usb:v046dp101b:name:Logitech M705:
7731320a 248mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
6b829ddd
TA
249# Logitech Performance MX
250mouse:usb:v046dp101a:name:Logitech Performance MX:
7731320a
ZJS
251 MOUSE_DPI=800@166
252
3fc1b05f
PH
253# Logitech MX Revolution
254mouse:usb:v046dpc51a:name:Logitech USB Receiver:
255 MOUSE_DPI=800@200
256
6437edbe
JG
257# Logitech G5 Laser Mouse
258mouse:usb:v046dpc049:name:Logitech USB Gaming Mouse:
eb59c75e 259# Logitech G500s Laser Gaming Mouse
0213a26f
PH
260mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
261 MOUSE_DPI=400@500 *800@500 2000@500
eb59c75e 262
1cbcfd3e
PH
263# Logitech G400 (Wired)
264mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
265 MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
266
267# Logitech G400s (Wired)
268mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
269 MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
270
3407fcd5
AK
271# Logitech G402 Hyperion Fury
272mouse:usb:v046dpc07e:name:Logitech Gaming Mouse G402:
273 MOUSE_DPI=400@1000 *800@1000 1600@1000 3200@1000
274
7731320a 275# Logitech B605 Wireless Mouse (also M505)
7a37956e
PH
276mouse:usb:v046dp101d:name:Logitech B605:
277mouse:usb:v046dp101d:name:Logitech M505:
7731320a
ZJS
278mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
279 MOUSE_DPI=900@166
280
95a0e128
SP
281# Logitech Cordless Desktop Wave Mouse
282mouse:usb:v046dpc517:name:Logitech USB Receiver:
283 MOUSE_DPI=950@125
284
e31fc141
ZJS
285# Logitech RX1000 Laser Mouse
286mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
287# Logitech M100 Optical Mouse
7731320a 288mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
bf66fe26
CB
289# Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
290mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
95a0e128
SP
291# Logitech V500 Cordless Notebook Mouse
292mouse:usb:v046dpc510:name:Logitech USB Receiver:
7731320a
ZJS
293 MOUSE_DPI=1000@125
294
cc00a2d1
PH
295# Logitech MX Master
296mouse:usb:v046dp4041:name:Logitech MX Master:
297 MOUSE_DPI=1000@166
298
149ff903
CB
299# Logitech MK260 Wireless Combo Receiver aka M-R0011
300mouse:usb:v046dpc52e:name:Logitech USB Receiver:
301 MOUSE_DPI=1000@200
302
eb59c75e
PH
303# Logitech G700 Laser Mouse (Wired)
304mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
305# Logitech G700 Laser Mouse (Wireless)
306mouse:usb:v046dpc531:name:Logitech USB Receiver:
307 MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
308
95a0e128
SP
309# Logitech Wireless Mouse M310
310mouse:usb:v046dp1024:name:Logitech M310:
311 MOUSE_DPI=1100@168
312
bdd31644
CB
313# Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
314mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
4540817b
LP
315# Logitech USB Laser Mouse M-U0007
316mouse:usb:v046dpc069:name:Logitech USB Laser Mouse:
bdd31644
CB
317 MOUSE_DPI=1200@125
318
eb59c75e 319# Logitech T620 (or, the soap)
7a37956e 320mouse:usb:v046dp4027:name:Logitech T620:
eb59c75e
PH
321mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
322 MOUSE_DPI=1200@250
323
75440a51
TA
324# Logitech LX8 Cordless Laser Mouse
325mouse:usb:v046dpc51b:name:Logitech USB Receiver:
326 MOUSE_DPI=1300@125
327 MOUSE_WHEEL_CLICK_ANGLE=15
328
7731320a 329# Logitech ZoneTouch Mouse T400
7a37956e 330mouse:usb:v046dp4026:name:Logitech T400:
7731320a
ZJS
331mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
332 MOUSE_DPI=1300@166
85c24db1 333
3d5c0e15
ZJS
334# Logitech G500 Mouse
335mouse:usb:v046dpc068:name:Logitech G500:
336 MOUSE_DPI=*1600@500 2600@500 3600@500
337
95a0e128
SP
338# Logitech MX1000 Laser Cordless Mouse
339mouse:bluetooth:v046dpb003:name:Logitech MX1000 mouse:
340 MOUSE_DPI=800@80
341
eb59c75e
PH
342# Logitech Ultrathin Touch Mouse
343mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
344 MOUSE_DPI=1000@1000
345
6b829ddd
TA
346# ImPS/2 Logitech Wheel Mouse
347mouse:ps2:*:name:ImPS/2 Logitech Wheel Mouse:
348 MOUSE_DPI=400@100
349
60329a9d
PH
350# ImExPS/2 Logitech Wheel Mouse
351mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
352 MOUSE_DPI=400@250
353
eb59c75e
PH
354##########################################
355# Microsoft
356##########################################
357
edbda61f 358mouse:usb:v045ep0040:name:Microsoft Microsoft 3-Button Mouse with IntelliEye(TM):
9fba65f1
LM
359 MOUSE_DPI=400@125
360
b631b481
PH
361# Note: unsure that these work, it's likely that all devices on these
362# receivers show up with the same vid/pid/name
363
6b829ddd
TA
364# Microsoft Wireless Mouse 5000
365mouse:usb:v045ep0745:name:Microsoft Microsoft® 2.4GHz Transceiver v6.0:
366 MOUSE_DPI=800@142
367
b631b481
PH
368# Microsoft Sculpt Ergonomic Mouse
369mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
370 MOUSE_DPI=1000@142
371
eb59c75e
PH
372# Microsoft Arc Touch Mouse USB
373mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
374 MOUSE_DPI=1400@142
375
2c561af2
FT
376# Microsoft Wireless Laser Mouse 8000
377mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
378 MOUSE_DPI=1000@1000
379
3641cff2
PH
380# Microsoft Arc Touch Mouse SE:
381mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE:
382 MOUSE_DPI=1000@2000
383
eb59c75e
PH
384##########################################
385# Oklick
386##########################################
387
0068de37 388# Oklick 406S Bluetooth Laser Mouse
eb59c75e
PH
389mouse:bluetooth:v056ep0061:name:Laser BTmouse:
390 MOUSE_DPI=*800@333 1600@333
0068de37
TG
391
392##########################################
393# Razer
394##########################################
395
396# Razer Abyssus
397mouse:usb:v1532p0042:name:Razer Razer Abyssus:
398 MOUSE_DPI=3500@1000
729bc933
BT
399
400##########################################
401# Roccat
402##########################################
403
404# Roccat Lua (ROC-11-310)
405mouse:usb:v1e7dp2c2e:name:ROCCAT ROCCAT Lua:
406 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
407 MOUSE_WHEEL_CLICK_ANGLE=15