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