]> git.ipfire.org Git - thirdparty/systemd.git/blame - hwdb.d/70-mouse.hwdb
hwdb: reindent commments and say that "*" should always be trailing
[thirdparty/systemd.git] / hwdb.d / 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#
62ad1c64
ZJS
9# Note: The format of the "mouse:" prefix match key is a contract between the
10# rules file and the hardware data, it might change in later revisions to
11# support more or better matches, it is not necessarily expected to be a stable
12# ABI.
0213a26f 13#
62ad1c64 14# Match key format:
0213a26f
PH
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
62ad1c64 21# mouse:*:name:<name>:*
0213a26f 22# if name is unavailable, use
62ad1c64 23# mouse:<subsystem>:v<vid>p<pid>:*
0213a26f
PH
24#
25# For example, the following 5 matches all match the same mouse:
62ad1c64
ZJS
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# All matches should end in ':*' to allow future expansions of the match key.
0213a26f 32#
011c7034
PH
33# To add local entries, create a new file
34# /etc/udev/hwdb.d/71-mouse-local.hwdb
35# and add your rules there. To load the new rules execute (as root):
331d6a20 36# systemd-hwdb update
011c7034 37# udevadm trigger /dev/input/eventXX
62ad1c64
ZJS
38# where /dev/input/eventXX is the mouse in question. If in doubt, simply use
39# /dev/input/event* to reload all input rules.
011c7034 40#
8601a85c
AK
41# If your changes are generally applicable, preferably send them as a pull
42# request to
195c9e37
ZJS
43# https://github.com/systemd/systemd
44# or create a bug report on https://github.com/systemd/systemd/issues and
45# include your new rules, a description of the device, and the output of
52bd587f 46# udevadm info /dev/input/eventXX.
011c7034
PH
47#
48# Allowed properties are:
62ad1c64
ZJS
49# ID_INPUT_TRACKBALL
50# MOUSE_DPI
51# MOUSE_WHEEL_CLICK_ANGLE
52# MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL
53# MOUSE_WHEEL_CLICK_COUNT
54# MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL
011c7034
PH
55#
56#########################################
d5c3b228
PH
57# ID_INPUT_TRACKBALL #
58#########################################
59#
60# Specified *in additition* to ID_INPUT_MOUSE if the device is a trackball.
61# Removing ID_INPUT_MOUSE will break backwards compatibility.
62#
63#########################################
011c7034
PH
64# MOUSE_DPI #
65#########################################
66#
0213a26f 67# DPI settings are specified as
62ad1c64 68# MOUSE_DPI=<dpi>[@<frequency>]
0213a26f
PH
69#
70# Where <dpi> is the resolution in dots per inch, and <frequency> the
3a8d368a
PH
71# sampling frequency in Hz (optional). If a device supports dynamic
72# frequency scaling, the maximum frequency should be used. For devices
73# supporting multiple fixed frequencies, see below.
0213a26f
PH
74#
75# The value of MOUSE_DPI is:
76# - a single integer for single-resolution mice, e.g.
77# MOUSE_DPI=800
78# or, if the frequency is known:
79# MOUSE_DPI=800@120
80# - a space-separated list of resolutions for multi-resolution mice.
8c67d0a7 81# The default resolution must be prefixed by an asterisk, the resolutions
0213a26f
PH
82# in the database must be as shipped by the manufacturer. e.g.
83# MOUSE_DPI=400 *800 2000
84#
85# The order of resolutions is as configured by the HW manufacturer or in
86# ascending order, whichever appropriate.
87#
88# The frequency must be given to either none or all resolutions. If the
3a8d368a 89# device supports multiple fixed frequencies, the order of items is
0213a26f
PH
90# MOUSE_DPI=r1@f1 r2@f1 r3@f1 r1@f2 r2@f2 r3@f2
91#
92# If the default manufacturer-set resolution is unclear, a resolution of
93# 800 or 1000 should be set as default, if available. If neither is
94# available, choose the "middle" resolution value of those available.
95#
96# The list may contain a single item which must be marked with an
97# asterisk.
98#
bd1c8360 99# Local changes to the non-default resolution of the mouse (e.g. through
0213a26f
PH
100# third-party software) must not be entered into this file, use a local
101# hwdb instead.
102#
011c7034
PH
103#########################################
104# MOUSE_WHEEL_CLICK_ANGLE #
105#########################################
106#
107# The angle in degrees per mouse wheel 'click', specified as
108# MOUSE_WHEEL_CLICK_ANGLE=<degrees>
109#
110# Most mice have a 15 degree click stop (24 clicks per full rotation).
9107a337
PH
111# For backwards-compatibility, the click angle must be an integer.
112# Where a device has non-integer click angles, the MOUSE_WHEEL_CLICK_COUNT
113# property should also be specified.
0213a26f 114#
5fc9e4ab 115#########################################
a6a8e60b 116# MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL #
5fc9e4ab
PH
117#########################################
118#
119# Identical to MOUSE_WHEEL_CLICK_ANGLE but for the horizontal scroll wheel.
120# This property may only be specified if the angle for the horizontal
121# scroll wheel differs from the vertical wheel. If so, *both* click angles
122# must be specified.
9107a337
PH
123#
124#########################################
125# MOUSE_WHEEL_CLICK_COUNT #
126# MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL #
127#########################################
128#
129# The number of clicks the wheel sends per 360 degree rotation. This
130# property should only be used where the click angle is not an integer.
131# For backwards compatibility it must be specified in addition to
132# MOUSE_WHEEL_CLICK_ANGLE.
133# Clients should prefer MOUSE_WHEEL_CLICK_COUNT where available, it is more
134# precise than MOUSE_WHEEL_CLICK_ANGLE.
135#
136# MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL works the same way but also follows the
137# rules of MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL.
0213a26f 138
7731320a 139#
47d36b7c 140# Sort by brand, type (usb, bluetooth), DPI, frequency.
7731320a
ZJS
141# For mice with switchable resolution, sort by the starred entry.
142
d5c3b228
PH
143##########################################
144# Generic
145##########################################
146mouse:*:name:*Trackball*:
147mouse:*:name:*trackball*:
148mouse:*:name:*TrackBall*:
149 ID_INPUT_TRACKBALL=1
150
68a6ac91
PH
151##########################################
152# Apple
153##########################################
154
155# Apple MagicMouse
156# Note: this device changes name once connected to a mac, the name ends up
157# as $username`s mouse
158mouse:bluetooth:v05acp030d:name:*:
159 MOUSE_DPI=1300@1000
160
af157cf8
CB
161##########################################
162# Chicony
163##########################################
164
165# Chicony 2.4G Multimedia Wireless Kit MG-0919
166mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
167 MOUSE_DPI=1000@142
168
eb59c75e
PH
169##########################################
170# Dell
171##########################################
172
ea243432
TA
173# Dell MUAR DEL7
174mouse:usb:v413cp3012:name:Dell Dell USB Optical Mouse:
175 MOUSE_DPI=400@166
176
eb59c75e
PH
177# Dell USB Laser Mouse
178mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
179 MOUSE_DPI=1000@125
180
682f7705
CH
181# Dell MS116t
182mouse:usb:v413cp301a:name:PixArt Dell MS116 USB Optical Mouse:
183 MOUSE_DPI=1000@125
184
7fab057d
TS
185##########################################
186# Dynex
187#########################################
188
189# Dynex Wired Optical Mouse (DX-WMSE2)
190mouse:usb:v0461p4d46:name:USB Optical Mouse:
191 MOUSE_DPI=1000@125
192
eaa5a98f
CB
193##########################################
194# Fujitsu Siemens
195##########################################
196
197mouse:usb:v0461p4d16:name:USB Optical Mouse:
198 MOUSE_DPI=500@125
199
ff434e21
BN
200##########################################
201# Future Technology Devices International
202##########################################
203
204# SNES Mouse plugged into a Retrode 2
205mouse:usb:v0403p97c1:name:Retrode SNES Mouse:
206 MOUSE_DPI=235@126
207
77eaf7b4
JT
208##########################################
209# Generic
210##########################################
211
212# FM-901 Wireless Mouse
213mouse:usb:v1ea7p000b:name:2.4G RF Mouse:
214 MOUSE_DPI=*800@125 1600@125
215
216# WK-727
217mouse:usb:v04d9p0499:name:*
218 MOUSE_DPI=800@125
219
fb8ab3c8
PH
220##########################################
221# HandShoe Mouse
222##########################################
223
224# HandShoe Mouse
225mouse:usb:v192fp0916:name:USB Optical Mouse:
226 MOUSE_DPI=1000@128
227
228##########################################
229# HoverStop
230##########################################
231
232# Hoverstop active ergonomic mouse
233mouse:usb:v088dp1234:name:HoverStop NL Hoverstop active ergonomic mouse:
234 MOUSE_DPI=400@129
235
e8043cd5
PH
236##########################################
237# HP
238##########################################
239
d78dfff2
TA
240# HP USB 1000dpi Laser Mouse
241mouse:usb:v0458p0133:name:Mouse Laser Mouse:
242 MOUSE_DPI=1000@125
243 MOUSE_WHEEL_CLICK_ANGLE=15
244
e8043cd5 245# HP X1000
682f7705 246# Dell MS111-T
e8043cd5 247mouse:usb:v093ap2510:name:PixArt USB Optical Mouse:
fb8ab3c8 248mouse:usb:v093ap2510:name:PIXART USB OPTICAL MOUSE:
e8043cd5
PH
249 MOUSE_DPI=1000@125
250
77eaf7b4
JT
251# HP X1200 Optical Mouse
252mouse:usb:v03f0p0641:name:PixArt HP X1200 USB Optical Mouse:
253 MOUSE_DPI=1100@125
254
bf79c7ab
ZJS
255##########################################
256# IBM
257##########################################
258
259# IBM USB Travel Mouse (MO32BO)
260mouse:usb:v04b3p3107:name:*
261 MOUSE_DPI=800@125
262
296b233d
TN
263##########################################
264# Kensington
265##########################################
266
267# Kensington Expert Mouse trackball
268mouse:usb:v047dp1020:*Kensington Expert Mouse*
269 ID_INPUT_TRACKBALL=1
270
0213a26f
PH
271##########################################
272# Lenovo
273##########################################
274
eb59c75e 275# Lenovo Optical USB Mouse
0213a26f
PH
276mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
277 MOUSE_DPI=1000@125
278
23c4147f
TA
279# Lenovo M-U0025-O
280mouse:usb:v17efp6019:name:Logitech Lenovo USB Optical Mouse:
281 MOUSE_DPI=1000@166
282
d03a00e2
CE
283# Lenovo USB mouse model MO28UOL
284mouse:usb:v04b3p310c:name:USB Optical Mouse:
285 MOUSE_DPI=400@142
40dba702 286
fb8ab3c8
PH
287# Lenovo Precision USB Mouse
288mouse:usb:v17efp6050:name:Lenovo Precision USB Mouse:
289 MOUSE_DPI=1200@127
290
23c4147f
TA
291# Lenovo MOBGUL
292mouse:usb:v17efp601d:name:Primax Lenovo Laser Mouse:
0919362b
CE
293 MOUSE_DPI=1600@125
294
23c4147f
TA
295# Lenovo MOBGULA
296mouse:usb:v17efp6045:name:Lenovo USB Laser Mouse:
297 MOUSE_DPI=1600@125
298
d03a00e2
CE
299# ThinkPad USB Laser Mouse
300mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
301 MOUSE_DPI=1200@125
23c4147f 302
0213a26f
PH
303##########################################
304# Logitech
305##########################################
306
eb59c75e
PH
307# Note: devices using the Logitech Unifying receiver will need two entries,
308# one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
309# model name. The usb vid/pid is the same for all those devices.
310# Until 3.19 is available, this list just has the Wireless PID entry.
311
5c6b51ff
CE
312## G Series ##
313
314# Logitech G5 Laser Mouse
315mouse:usb:v046dpc049:name:Logitech USB Gaming Mouse:
0919362b
CE
316 MOUSE_DPI=400@500 *800@500 2000@500
317
5c6b51ff
CE
318# Logitech G500s Laser Gaming Mouse
319mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
320 MOUSE_DPI=400@500 *800@500 2000@500
321
322# Logitech G9
323mouse:usb:v046dpc048:name:Logitech G9 Laser Mouse:
324 MOUSE_DPI=400@1000 800@1000 *1600@1000
325
326# Logitech G9x [Call of Duty MW3 Edition]
327mouse:usb:v046dpc249:name:Logitech G9x Laser Mouse:
328 MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
329
330# Logitech G100s Optical Gaming Mouse
331mouse:usb:v046dpc247:name:Logitech G100s Optical Gaming Mouse:
332 MOUSE_DPI=*1000@500 1750@500 2500@500
333
334# Logitech G400 (Wired)
335mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
336 MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
337
338# Logitech G400s (Wired)
339mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
340 MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
341
342# Logitech G402 Hyperion Fury
343mouse:usb:v046dpc07e:name:Logitech Gaming Mouse G402:
344 MOUSE_DPI=400@1000 *800@1000 1600@1000 3200@1000
345
346# Logitech G500 Mouse
347mouse:usb:v046dpc068:name:Logitech G500:
348 MOUSE_DPI=*1600@500 2600@500 3600@500
349
350# Logitech G502 Proteus Spectrum
351mouse:usb:v046dpc332:name:Logitech Gaming Mouse G502:
67551eac
AML
352# Logitech G502 HERO SE
353mouse:usb:v046dpc08b:name:Logitech G502 HERO SE:
1cdc42f2
G
354# Logitech G502 Hero
355mouse:usb:v046dpc08b:name:Logitech G502 HERO Gaming Mouse:
5c6b51ff
CE
356 MOUSE_DPI=1200@1000 *2400@1000 3200@1000 6400@1000
357
358# Logitech G700 Laser Mouse (Wired)
359mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
360# Logitech G700 Laser Mouse (Wireless)
361mouse:usb:v046dpc531:name:Logitech USB Receiver:
362 MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
363
364# Logitech G703 (Wired)
365mouse:usb:v046dpc087:name:Logitech G703 Wired/Wireless Gaming Mouse:
366# Logitech G703 (Wireless)
367mouse:usb:v046dpc539:name:Logitech USB Receiver Mouse:
368 MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
369
370## M Series ##
371
372# Logitech Wireless Mouse M185
373mouse:usb:v046dp4008:name:Logitech M185:
374mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
0919362b
CE
375 MOUSE_DPI=1000@125
376
5c6b51ff
CE
377# Logitech Wireless Mouse M510
378mouse:usb:v046dp1025:name:Logitech M510:
0919362b
CE
379 MOUSE_DPI=1000@125
380
5c6b51ff
CE
381# Logitech M705 (marathon mouse)
382mouse:usb:v046dp101b:name:Logitech M705:
383mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
384 MOUSE_DPI=1000@125
385
c5bc4f77
MS
386# Logitech M705 (newer version?)
387mouse:usb:v046dp406d:name:Logitech M705:
388 MOUSE_DPI=1000@167
389
5c6b51ff
CE
390# Logitech M305 Wireless Optical Mouse
391mouse:usb:v046dpc52f:name:Logitech USB Receiver:
392 MOUSE_DPI=1000@170
393
394# Logitech Wireless Mouse M310
395mouse:usb:v046dp1024:name:Logitech M310:
396 MOUSE_DPI=1100@168
397
398# Logitech Wireless Mouse M325
399mouse:usb:v046dp400a:name:Logitech M325:
400mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
401 MOUSE_DPI=600@166
402 MOUSE_WHEEL_CLICK_ANGLE=20
403
404# Logitech M570 trackball
405mouse:usb:v046dp1028:name:Logitech M570:
406 MOUSE_DPI=540@167
407 ID_INPUT_TRACKBALL=1
408
409## MX Series ##
410
411# Logitech Performance MX
412mouse:usb:v046dp101a:name:Logitech Performance MX:
413 MOUSE_DPI=1000@166
414
415# Logitech MX Revolution
416mouse:usb:v046dpc51a:name:Logitech USB Receiver:
417 MOUSE_DPI=800@200
418
419# Logitech MX 518
420mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
421 MOUSE_DPI=400@125 *800@125 1600@125
422
423# Logitech MX1000 Laser Cordless Mouse
424mouse:bluetooth:v046dpb003:name:Logitech MX1000 mouse:
425 MOUSE_DPI=800@80
426
35a14d75
IS
427# Logitech Anywhere MX
428mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:1017:
429mouse:usb:v046dp1017:name:Logitech Anywhere MX:
0919362b
CE
430 MOUSE_WHEEL_CLICK_ANGLE=20
431
9e94246c 432# Logitech Anywhere MX 2S (via Logitech Unifying Receiver)
af9a5a0c 433mouse:usb:v046dp406a:name:Logitech MX Anywhere 2S:
35a14d75
IS
434 MOUSE_WHEEL_CLICK_ANGLE=20
435
9e94246c
HT
436# Logitech Anywhere MX 2S (via Bluetooth)
437mouse:bluetooth:v046dpb01a:name:MX Anywhere 2S Mouse:
438 MOUSE_WHEEL_CLICK_ANGLE=20
439
05de1676 440# Logitech MX Master (via Logitech Unifying Receiver)
5c6b51ff 441# Horiz wheel has 14 stops, angle is rounded up
a2ca5752 442mouse:usb:v046dp4060:name:Logitech MX Master:
5c6b51ff
CE
443mouse:usb:v046dp4041:name:Logitech MX Master:
444 MOUSE_DPI=1000@166
445 MOUSE_WHEEL_CLICK_ANGLE=15
446 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
447 MOUSE_WHEEL_CLICK_COUNT=24
448 MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
449
05de1676
JAS
450# Logitech MX Master (via Bluetooth)
451# Horiz wheel has 14 stops, angle is rounded up
452mouse:bluetooth:v046dpb012:name:MX Master Mouse:
453 MOUSE_DPI=1000@2000
454 MOUSE_WHEEL_CLICK_ANGLE=15
455 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
456 MOUSE_WHEEL_CLICK_COUNT=24
457 MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
458
9d9bf7aa 459# Logitech MX Master 2S (via Logitech Unifying Receiver)
5c6b51ff
CE
460# Horiz wheel has 14 stops, angle is rounded up
461mouse:usb:v046dp4069:name:Logitech MX Master 2s:
462 MOUSE_DPI=1000@125
463 MOUSE_WHEEL_CLICK_ANGLE=15
464 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
465 MOUSE_WHEEL_CLICK_COUNT=24
466 MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
467
9d9bf7aa
ES
468# Logitech MX Master 2S (via Bluetooth)
469# Horiz wheel has 14 stops, angle is rounded up
470mouse:bluetooth:v046dpb019:name:MX Master 2S Mouse:
6355715e 471 MOUSE_DPI=1000@2000
9d9bf7aa
ES
472 MOUSE_WHEEL_CLICK_ANGLE=15
473 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
474 MOUSE_WHEEL_CLICK_COUNT=24
475 MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
476
09e4b620 477# Logitech MX Ergo (via Bluetooth)
478mouse:bluetooth:v046dpb01d:name:MX Ergo Mouse:
479 ID_INPUT_TRACKBALL=1
480
5c6b51ff
CE
481## Other ##
482
e31fc141
ZJS
483# Logitech M-BJ58 Optical Mouse
484mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
0919362b
CE
485 MOUSE_DPI=400@125
486
6b829ddd
TA
487# Logitech Mini Optical Mouse
488mouse:usb:v046dpc016:name:Logitech Optical USB Mouse:
0919362b
CE
489 MOUSE_DPI=400@125
490
e31fc141
ZJS
491# Logitech MX310 Optical Mouse
492mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
0919362b
CE
493 MOUSE_DPI=400@125
494
7731320a
ZJS
495# Logitech USB-PS/2 M-BT58
496mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
0919362b
CE
497 MOUSE_DPI=400@125
498
5967bda0
PH
499# Logitech TrackMan Marble Wheel USB
500mouse:usb:v046dpc401:name:Logitech USB-PS/2 Trackball:
7731320a
ZJS
501 MOUSE_DPI=400@125
502
77eaf7b4
JT
503# Logitech Cordless MouseMan Optical M-RM63
504mouse:usb:v046dpc501:name:Logitech USB Receiver:
505 MOUSE_DPI=800@63
506
7731320a
ZJS
507# Logitech USB-PS/2 M-BZ96C
508mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
509 MOUSE_DPI=600@125
510
95a0e128
SP
511# Logitech MX400 Performance Laser Mouse
512mouse:usb:v046dpc043:name:Logitech USB-PS/2 Optical Mouse:
0919362b
CE
513 MOUSE_DPI=800@125
514
6a057a99
PH
515# Logitech MX1000 Laser Cordless Mouse
516mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
0919362b
CE
517 MOUSE_DPI=800@125
518
eb59c75e
PH
519# Logitech Cordless Click! Plus
520mouse:usb:v046dpc50e:name:Logitech USB Receiver:
0919362b
CE
521 MOUSE_DPI=800@125
522
17134776
TJ
523# Logitech, Inc. RX 300 Optical Mouse
524mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
eb59c75e
PH
525 MOUSE_DPI=800@125
526
dba76359
ZJS
527# Logitech, Inc. RX 250 Optical Mouse
528mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
c7c9fd04 529 MOUSE_DPI=1000@142
dba76359 530
7731320a 531# Logitech B605 Wireless Mouse (also M505)
7a37956e
PH
532mouse:usb:v046dp101d:name:Logitech B605:
533mouse:usb:v046dp101d:name:Logitech M505:
7731320a
ZJS
534mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
535 MOUSE_DPI=900@166
536
95a0e128
SP
537# Logitech Cordless Desktop Wave Mouse
538mouse:usb:v046dpc517:name:Logitech USB Receiver:
539 MOUSE_DPI=950@125
540
e31fc141
ZJS
541# Logitech RX1000 Laser Mouse
542mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
0919362b
CE
543 MOUSE_DPI=1000@125
544
e31fc141 545# Logitech M100 Optical Mouse
7731320a 546mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
0919362b
CE
547 MOUSE_DPI=1000@125
548
bf66fe26
CB
549# Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
550mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
0919362b
CE
551 MOUSE_DPI=1000@125
552
10086bb7
PH
553# Logitech USB Laser Mouse M-U0007 [M500]
554mouse:usb:v046dpc069:name:Logitech USB Laser Mouse:
0919362b
CE
555 MOUSE_DPI=1000@125
556
95a0e128
SP
557# Logitech V500 Cordless Notebook Mouse
558mouse:usb:v046dpc510:name:Logitech USB Receiver:
0919362b
CE
559 MOUSE_DPI=1000@125
560
84faaa1f
ZJS
561# Logitech M560 Wireless Mouse
562mouse:usb:v046dp402d:name:Logitech M560:
563mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:402d:
7731320a
ZJS
564 MOUSE_DPI=1000@125
565
149ff903
CB
566# Logitech MK260 Wireless Combo Receiver aka M-R0011
567mouse:usb:v046dpc52e:name:Logitech USB Receiver:
568 MOUSE_DPI=1000@200
569
bdd31644
CB
570# Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
571mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
572 MOUSE_DPI=1200@125
573
eb59c75e 574# Logitech T620 (or, the soap)
7a37956e 575mouse:usb:v046dp4027:name:Logitech T620:
eb59c75e
PH
576mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
577 MOUSE_DPI=1200@250
578
7731320a 579# Logitech ZoneTouch Mouse T400
7a37956e 580mouse:usb:v046dp4026:name:Logitech T400:
7731320a
ZJS
581mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
582 MOUSE_DPI=1300@166
85c24db1 583
da858c38 584# Logitech TrackMan Wheel (USB)
585mouse:usb:v046dpc404:name:Logitech Trackball:
586 MOUSE_DPI=300@125
587
eb59c75e
PH
588# Logitech Ultrathin Touch Mouse
589mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
590 MOUSE_DPI=1000@1000
591
6b829ddd
TA
592# ImPS/2 Logitech Wheel Mouse
593mouse:ps2:*:name:ImPS/2 Logitech Wheel Mouse:
594 MOUSE_DPI=400@100
595
60329a9d
PH
596# ImExPS/2 Logitech Wheel Mouse
597mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
598 MOUSE_DPI=400@250
599
eb59c75e
PH
600##########################################
601# Microsoft
602##########################################
603
edbda61f 604mouse:usb:v045ep0040:name:Microsoft Microsoft 3-Button Mouse with IntelliEye(TM):
9fba65f1
LM
605 MOUSE_DPI=400@125
606
b631b481
PH
607# Note: unsure that these work, it's likely that all devices on these
608# receivers show up with the same vid/pid/name
609
6b829ddd
TA
610# Microsoft Wireless Mouse 5000
611mouse:usb:v045ep0745:name:Microsoft Microsoft® 2.4GHz Transceiver v6.0:
612 MOUSE_DPI=800@142
613
682f7705
CH
614# Microsoft Comfort Mouse 4500
615mouse:usb:v045ep076c:name:Microsoft Microsoft® Comfort Mouse 4500:
616 MOUSE_DPI=1000@125
617
ea243432
TA
618# Microsoft Wireless Mobile Mouse 4000
619mouse:usb:v045ep0745:name:Microsoft Microsoft® Nano Transceiver v2.0:
0919362b
CE
620 MOUSE_DPI=1000@142
621
b631b481
PH
622# Microsoft Sculpt Ergonomic Mouse
623mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
624 MOUSE_DPI=1000@142
625
eb59c75e
PH
626# Microsoft Arc Touch Mouse USB
627mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
628 MOUSE_DPI=1400@142
629
2c561af2
FT
630# Microsoft Wireless Laser Mouse 8000
631mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
632 MOUSE_DPI=1000@1000
633
0d2eef9b
MS
634# Microsoft Sculpt Comfort Mouse
635mouse:bluetooth:v045ep07a2:name:Microsoft Sculpt Comfort Mouse:
636 MOUSE_DPI=1000@2000
637
3641cff2
PH
638# Microsoft Arc Touch Mouse SE:
639mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE:
640 MOUSE_DPI=1000@2000
641
a020d2df
ES
642# Microsoft Surface Mouse
643mouse:bluetooth:v0000p0000:name:Surface Mouse:
644 MOUSE_DPI=2000@2000
645
26d7cf3d
DV
646# Microsoft Classic IntelliMouse
647mouse:usb:v045ep0823:name:Microsoft Microsoft?? Classic IntelliMouse??:
648 MOUSE_DPI=3200@1000
649
f0e04d20
M
650##########################################
651# Mionix
652##########################################
653
654#Mionix Avior 7000
655mouse:usb:v22d4p1308:name:Laview Technology Mionix Avior 7000:
656 MOUSE_DPI=400@1000 *1600@1000 7000@1000
657 MOUSE_WHEEL_CLICK_ANGLE=15
658
c29b3379
RW
659##########################################
660# MODECOM
661##########################################
662
663# MODECOM MC-WM4 Wireless Optical Mouse
664mouse:usb:v0e8fp00a7:name:DaKai 2.4G RX:
665 MOUSE_DPI=*800@126 1600@126
666
eb59c75e
PH
667##########################################
668# Oklick
669##########################################
670
0068de37 671# Oklick 406S Bluetooth Laser Mouse
eb59c75e
PH
672mouse:bluetooth:v056ep0061:name:Laser BTmouse:
673 MOUSE_DPI=*800@333 1600@333
0068de37 674
77eaf7b4
JT
675##########################################
676# P-Active
677##########################################
678
679# P-Active Wireless Mouse PA-27K2
680mouse:usb:v0425p0101:name:G-Tech CHINA USB Wireless Mouse & KeyBoard V1.01 :
681 MOUSE_DPI=800@125
682
0068de37
TG
683##########################################
684# Razer
685##########################################
686
687# Razer Abyssus
688mouse:usb:v1532p0042:name:Razer Razer Abyssus:
f674c168 689 MOUSE_DPI=1600@1000
729bc933 690
502f8269
FC
691# Razer DeathAdder Black Edition
692mouse:usb:v1532p0029:name:Razer Razer DeathAdder:
693 MOUSE_DPI=3500@1000
694
729bc933
BT
695##########################################
696# Roccat
697##########################################
698
699# Roccat Lua (ROC-11-310)
700mouse:usb:v1e7dp2c2e:name:ROCCAT ROCCAT Lua:
701 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
702 MOUSE_WHEEL_CLICK_ANGLE=15
c29b3379
RW
703
704##########################################
705# Sharkoon
706##########################################
707
708# Sharkoon Shark Force Gaming Mouse
709mouse:usb:v093ap2521:name:USB OPTICAL MOUSE:
710 MOUSE_DPI=*1000@125 1600@125 600@125
7b2cee49
MP
711
712##########################################
713# SteelSeries
714##########################################
715
716# SteelSeries Sensei Raw
717mouse:usb:v1038p1369:name:SteelSeries Sensei Raw Gaming Mouse:
718 MOUSE_DPI=1000@1022
5f390fc0
FDP
719
720##########################################
721# Trust
722##########################################
723
724# Trust illuminated mouse gxt 152
725mouse:usb:v145fp01ac:name:HID-compliant Mouse Trust Gaming Mouse:
726 MOUSE_DPI=*800@528 1200@537 1600@536 2400@521
ac741b47 727
c498df3a
LP
728##########################################
729# Zelotes
730##########################################
ac741b47
RS
731
732# Zelotes 5500 DPI 7 Button USB Wired Gaming Mouse
733mouse:usb:v1d57pad17:*
734 MOUSE_DPI=1000@500 1600@500 2400@500 3200@500 5500@500 *1000@1000 1600@1000 2400@1000 3200@1000 5500@1000
877aa0bd
TW
735
736##########################################
737# Zowie
738##########################################
739
740# Zowie FK2
741mouse:usb:v3057p0001:*
742 MOUSE_DPI=400@125 *800@125 1600@125 3200@125 400@500 800@500 1600@500 3200@500 400@1000 800@1000 1600@1000 3200@1000
743 MOUSE_WHEEL_CLICK_COUNT=16
744 MOUSE_WHEEL_CLICK_ANGLE=23
a8acbf97
FPR
745
746# Zowie ZA12
747mouse:usb:v1af3p0001:name:Kingsis Peripherals ZOWIE Gaming mouse:
748 MOUSE_DPI=400@125 *800@125 1600@125 3200@125 400@500 800@500 1600@500 3200@500 400@1000 800@1000 1600@1000 3200@1000
749 MOUSE_WHEEL_CLICK_COUNT=16
750 MOUSE_WHEEL_CLICK_ANGLE=23