]> git.ipfire.org Git - thirdparty/systemd.git/blame - hwdb/70-mouse.hwdb
hwdb: Add Logitech G100s Optical Gaming Mouse (#6570)
[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):
331d6a20 34# systemd-hwdb update
011c7034
PH
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
52bd587f 44# udevadm info /dev/input/eventXX.
011c7034
PH
45#
46# Allowed properties are:
d5c3b228 47# ID_INPUT_TRACKBALL
011c7034
PH
48# MOUSE_DPI
49# MOUSE_WHEEL_CLICK_ANGLE
a6a8e60b 50# MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL
9107a337
PH
51# MOUSE_WHEEL_CLICK_COUNT
52# MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL
1a4132ae
PH
53# MOUSE_WHEEL_TILT_HORIZONTAL
54# MOUSE_WHEEL_TILT_VERTICAL
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
PH
67# DPI settings are specified as
68# MOUSE_DPI=<dpi>[@<frequency>]
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#
99# Local changes to the a non-default resolution of the mouse (e.g. through
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
1a4132ae
PH
139#########################################
140# MOUSE_WHEEL_TILT_HORIZONTAL #
141# MOUSE_WHEEL_TILT_VERTICAL #
142#########################################
143#
144# Indicates that the respective axis is not a mouse wheel rotation but a
145# tilt along that axis. Wheel tilt is most commonly used for horizontal
146# scroll wheel emulation on mice with only a single vertical wheel.
147#
148# The vertical and horizontal Axes are independently marked as tilt axes,
149# for example it is permitted to have a MOUSE_WHEEL_CLICK_COUNT or
150# MOUSE_WHEEL_CLICK_ANGLE for the vertical axis and mark the horizontal axis
151# marked as as MOUSE_WHEEL_TILT_HORIZONTAL.
152#
153# It is a bug to have either CLICK_COUNT or CLICK_ANGLE set on the same axis
154# as WHEEL_TILT. Applications should give priority to WHEEL_TILT and ignore
155# other settings.
156#
157# This is a flag only, permitted values: 0 or 1
158
7731320a 159#
47d36b7c 160# Sort by brand, type (usb, bluetooth), DPI, frequency.
7731320a
ZJS
161# For mice with switchable resolution, sort by the starred entry.
162
d5c3b228
PH
163##########################################
164# Generic
165##########################################
166mouse:*:name:*Trackball*:
167mouse:*:name:*trackball*:
168mouse:*:name:*TrackBall*:
169 ID_INPUT_TRACKBALL=1
170
68a6ac91
PH
171##########################################
172# Apple
173##########################################
174
175# Apple MagicMouse
176# Note: this device changes name once connected to a mac, the name ends up
177# as $username`s mouse
178mouse:bluetooth:v05acp030d:name:*:
179 MOUSE_DPI=1300@1000
180
af157cf8
CB
181##########################################
182# Chicony
183##########################################
184
185# Chicony 2.4G Multimedia Wireless Kit MG-0919
186mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
187 MOUSE_DPI=1000@142
188
eb59c75e
PH
189##########################################
190# Dell
191##########################################
192
ea243432
TA
193# Dell MUAR DEL7
194mouse:usb:v413cp3012:name:Dell Dell USB Optical Mouse:
195 MOUSE_DPI=400@166
196
eb59c75e
PH
197# Dell USB Laser Mouse
198mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
199 MOUSE_DPI=1000@125
200
7fab057d
TS
201##########################################
202# Dynex
203#########################################
204
205# Dynex Wired Optical Mouse (DX-WMSE2)
206mouse:usb:v0461p4d46:name:USB Optical Mouse:
207 MOUSE_DPI=1000@125
208
eaa5a98f
CB
209##########################################
210# Fujitsu Siemens
211##########################################
212
213mouse:usb:v0461p4d16:name:USB Optical Mouse:
214 MOUSE_DPI=500@125
215
ff434e21
BN
216##########################################
217# Future Technology Devices International
218##########################################
219
220# SNES Mouse plugged into a Retrode 2
221mouse:usb:v0403p97c1:name:Retrode SNES Mouse:
222 MOUSE_DPI=235@126
223
fb8ab3c8
PH
224##########################################
225# HandShoe Mouse
226##########################################
227
228# HandShoe Mouse
229mouse:usb:v192fp0916:name:USB Optical Mouse:
230 MOUSE_DPI=1000@128
231
232##########################################
233# HoverStop
234##########################################
235
236# Hoverstop active ergonomic mouse
237mouse:usb:v088dp1234:name:HoverStop NL Hoverstop active ergonomic mouse:
238 MOUSE_DPI=400@129
239
e8043cd5
PH
240##########################################
241# HP
242##########################################
243
d78dfff2
TA
244# HP USB 1000dpi Laser Mouse
245mouse:usb:v0458p0133:name:Mouse Laser Mouse:
246 MOUSE_DPI=1000@125
247 MOUSE_WHEEL_CLICK_ANGLE=15
248
e8043cd5
PH
249# HP X1000
250mouse:usb:v093ap2510:name:PixArt USB Optical Mouse:
fb8ab3c8 251mouse:usb:v093ap2510:name:PIXART USB OPTICAL MOUSE:
e8043cd5
PH
252 MOUSE_DPI=1000@125
253
bf79c7ab
ZJS
254##########################################
255# IBM
256##########################################
257
258# IBM USB Travel Mouse (MO32BO)
259mouse:usb:v04b3p3107:name:*
260 MOUSE_DPI=800@125
261
0213a26f
PH
262##########################################
263# Lenovo
264##########################################
265
eb59c75e 266# Lenovo Optical USB Mouse
0213a26f
PH
267mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
268 MOUSE_DPI=1000@125
269
23c4147f
TA
270# Lenovo M-U0025-O
271mouse:usb:v17efp6019:name:Logitech Lenovo USB Optical Mouse:
272 MOUSE_DPI=1000@166
273
40dba702
LP
274# ThinkPad USB Laser Mouse
275mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
276 MOUSE_DPI=1200@125
277
fb8ab3c8
PH
278# Lenovo Precision USB Mouse
279mouse:usb:v17efp6050:name:Lenovo Precision USB Mouse:
280 MOUSE_DPI=1200@127
281
23c4147f
TA
282# Lenovo MOBGUL
283mouse:usb:v17efp601d:name:Primax Lenovo Laser Mouse:
284# Lenovo MOBGULA
285mouse:usb:v17efp6045:name:Lenovo USB Laser Mouse:
286 MOUSE_DPI=1600@125
287
288
0213a26f
PH
289##########################################
290# Logitech
291##########################################
292
eb59c75e
PH
293# Note: devices using the Logitech Unifying receiver will need two entries,
294# one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
295# model name. The usb vid/pid is the same for all those devices.
296# Until 3.19 is available, this list just has the Wireless PID entry.
297
e31fc141
ZJS
298# Logitech M-BJ58 Optical Mouse
299mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
6b829ddd
TA
300# Logitech Mini Optical Mouse
301mouse:usb:v046dpc016:name:Logitech Optical USB Mouse:
e31fc141
ZJS
302# Logitech MX310 Optical Mouse
303mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
7731320a
ZJS
304# Logitech USB-PS/2 M-BT58
305mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
5967bda0
PH
306# Logitech TrackMan Marble Wheel USB
307mouse:usb:v046dpc401:name:Logitech USB-PS/2 Trackball:
7731320a
ZJS
308 MOUSE_DPI=400@125
309
c470b44f
FT
310# Lenovo USB mouse model MO28UOL
311mouse:usb:v04b3p310c:name:USB Optical Mouse:
312 MOUSE_DPI=400@142
313
1cbcfd3e
PH
314# Logitech M570 trackball
315mouse:usb:v046dp1028:name:Logitech M570:
316 MOUSE_DPI=540@167
d5c3b228 317 ID_INPUT_TRACKBALL=1
1cbcfd3e 318
7731320a
ZJS
319# Logitech USB-PS/2 M-BZ96C
320mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
321 MOUSE_DPI=600@125
322
abd440cd 323# Logitech Wireless Mouse M325
7a37956e 324mouse:usb:v046dp400a:name:Logitech M325:
7731320a
ZJS
325mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
326 MOUSE_DPI=600@166
b333117c 327 MOUSE_WHEEL_CLICK_ANGLE=20
eb59c75e 328
95a0e128
SP
329# Logitech MX400 Performance Laser Mouse
330mouse:usb:v046dpc043:name:Logitech USB-PS/2 Optical Mouse:
6a057a99
PH
331# Logitech MX1000 Laser Cordless Mouse
332mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
eb59c75e
PH
333# Logitech Cordless Click! Plus
334mouse:usb:v046dpc50e:name:Logitech USB Receiver:
17134776
TJ
335# Logitech, Inc. RX 300 Optical Mouse
336mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
eb59c75e
PH
337 MOUSE_DPI=800@125
338
de72f11b
HH
339# Logitech MX 518
340mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
341 MOUSE_DPI=400@125 *800@125 1600@125
342
dba76359
ZJS
343# Logitech, Inc. RX 250 Optical Mouse
344mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
c7c9fd04 345 MOUSE_DPI=1000@142
dba76359 346
7731320a 347# Logitech Wireless Mouse M185
7a37956e 348mouse:usb:v046dp4008:name:Logitech M185:
7731320a 349mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
95a0e128
SP
350# Logitech Wireless Mouse M510
351mouse:usb:v046dp1025:name:Logitech M510:
7731320a 352# Logitech M705 (marathon mouse)
7a37956e 353mouse:usb:v046dp101b:name:Logitech M705:
7731320a
ZJS
354mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
355 MOUSE_DPI=800@166
356
3fc1b05f
PH
357# Logitech MX Revolution
358mouse:usb:v046dpc51a:name:Logitech USB Receiver:
359 MOUSE_DPI=800@200
360
6437edbe
JG
361# Logitech G5 Laser Mouse
362mouse:usb:v046dpc049:name:Logitech USB Gaming Mouse:
eb59c75e 363# Logitech G500s Laser Gaming Mouse
0213a26f
PH
364mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
365 MOUSE_DPI=400@500 *800@500 2000@500
ed1236be 366
3d431503 367# Logitech G9
29264ff3 368mouse:usb:v046dpc048:name:Logitech G9 Laser Mouse:
7703518c 369 MOUSE_DPI=400@1000 800@1000 *1600@1000
29264ff3
N
370
371# Logitech G9x [Call of Duty MW3 Edition]
372mouse:usb:v046dpc249:name:Logitech G9x Laser Mouse:
0ac58d84 373 MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
eb59c75e 374
1cbcfd3e
PH
375# Logitech G400 (Wired)
376mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
377 MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
378
379# Logitech G400s (Wired)
380mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
381 MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
382
3407fcd5
AK
383# Logitech G402 Hyperion Fury
384mouse:usb:v046dpc07e:name:Logitech Gaming Mouse G402:
385 MOUSE_DPI=400@1000 *800@1000 1600@1000 3200@1000
386
123c1ff7
TS
387# Logitech G502 Proteus Spectrum
388mouse:usb:v046dpc332:name:Logitech Gaming Mouse G502:
389 MOUSE_DPI=1200@1000 *2400@1000 3200@1000 6400@1000
390
7731320a 391# Logitech B605 Wireless Mouse (also M505)
7a37956e
PH
392mouse:usb:v046dp101d:name:Logitech B605:
393mouse:usb:v046dp101d:name:Logitech M505:
7731320a
ZJS
394mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
395 MOUSE_DPI=900@166
396
95a0e128
SP
397# Logitech Cordless Desktop Wave Mouse
398mouse:usb:v046dpc517:name:Logitech USB Receiver:
399 MOUSE_DPI=950@125
400
e31fc141
ZJS
401# Logitech RX1000 Laser Mouse
402mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
403# Logitech M100 Optical Mouse
7731320a 404mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
bf66fe26
CB
405# Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
406mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
10086bb7
PH
407# Logitech USB Laser Mouse M-U0007 [M500]
408mouse:usb:v046dpc069:name:Logitech USB Laser Mouse:
95a0e128
SP
409# Logitech V500 Cordless Notebook Mouse
410mouse:usb:v046dpc510:name:Logitech USB Receiver:
84faaa1f
ZJS
411# Logitech M560 Wireless Mouse
412mouse:usb:v046dp402d:name:Logitech M560:
413mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:402d:
7731320a
ZJS
414 MOUSE_DPI=1000@125
415
c1091987
PH
416# Logitech Performance MX
417mouse:usb:v046dp101a:name:Logitech Performance MX:
5fc9e4ab
PH
418 MOUSE_DPI=1000@166
419
cc00a2d1 420# Logitech MX Master
5fc9e4ab 421# Horiz wheel has 14 stops, angle is rounded up
cc00a2d1
PH
422mouse:usb:v046dp4041:name:Logitech MX Master:
423 MOUSE_DPI=1000@166
5fc9e4ab 424 MOUSE_WHEEL_CLICK_ANGLE=15
a6a8e60b 425 MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
9107a337
PH
426 MOUSE_WHEEL_CLICK_COUNT=24
427 MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
cc00a2d1 428
149ff903
CB
429# Logitech MK260 Wireless Combo Receiver aka M-R0011
430mouse:usb:v046dpc52e:name:Logitech USB Receiver:
431 MOUSE_DPI=1000@200
432
850c8bd7
CH
433# Logitech G100s Optical Gaming Mouse
434mouse:usb:v046dpc247:name:Logitech G100s Optical Gaming Mouse:
435 MOUSE_DPI=*1000@500 1750@500 2500@500
436
eb59c75e
PH
437# Logitech G700 Laser Mouse (Wired)
438mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
439# Logitech G700 Laser Mouse (Wireless)
440mouse:usb:v046dpc531:name:Logitech USB Receiver:
441 MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
442
95a0e128
SP
443# Logitech Wireless Mouse M310
444mouse:usb:v046dp1024:name:Logitech M310:
445 MOUSE_DPI=1100@168
446
bdd31644
CB
447# Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
448mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
449 MOUSE_DPI=1200@125
450
eb59c75e 451# Logitech T620 (or, the soap)
7a37956e 452mouse:usb:v046dp4027:name:Logitech T620:
eb59c75e
PH
453mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
454 MOUSE_DPI=1200@250
455
7731320a 456# Logitech ZoneTouch Mouse T400
7a37956e 457mouse:usb:v046dp4026:name:Logitech T400:
7731320a
ZJS
458mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
459 MOUSE_DPI=1300@166
85c24db1 460
3d5c0e15
ZJS
461# Logitech G500 Mouse
462mouse:usb:v046dpc068:name:Logitech G500:
463 MOUSE_DPI=*1600@500 2600@500 3600@500
464
da858c38 465# Logitech TrackMan Wheel (USB)
466mouse:usb:v046dpc404:name:Logitech Trackball:
467 MOUSE_DPI=300@125
468
95a0e128
SP
469# Logitech MX1000 Laser Cordless Mouse
470mouse:bluetooth:v046dpb003:name:Logitech MX1000 mouse:
471 MOUSE_DPI=800@80
472
eb59c75e
PH
473# Logitech Ultrathin Touch Mouse
474mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
475 MOUSE_DPI=1000@1000
476
6b829ddd
TA
477# ImPS/2 Logitech Wheel Mouse
478mouse:ps2:*:name:ImPS/2 Logitech Wheel Mouse:
479 MOUSE_DPI=400@100
480
60329a9d
PH
481# ImExPS/2 Logitech Wheel Mouse
482mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
483 MOUSE_DPI=400@250
484
eb59c75e
PH
485##########################################
486# Microsoft
487##########################################
488
edbda61f 489mouse:usb:v045ep0040:name:Microsoft Microsoft 3-Button Mouse with IntelliEye(TM):
9fba65f1
LM
490 MOUSE_DPI=400@125
491
b631b481
PH
492# Note: unsure that these work, it's likely that all devices on these
493# receivers show up with the same vid/pid/name
494
6b829ddd
TA
495# Microsoft Wireless Mouse 5000
496mouse:usb:v045ep0745:name:Microsoft Microsoft® 2.4GHz Transceiver v6.0:
497 MOUSE_DPI=800@142
498
ea243432
TA
499# Microsoft Wireless Mobile Mouse 4000
500mouse:usb:v045ep0745:name:Microsoft Microsoft® Nano Transceiver v2.0:
b631b481
PH
501# Microsoft Sculpt Ergonomic Mouse
502mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
503 MOUSE_DPI=1000@142
504
eb59c75e
PH
505# Microsoft Arc Touch Mouse USB
506mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
507 MOUSE_DPI=1400@142
508
2c561af2
FT
509# Microsoft Wireless Laser Mouse 8000
510mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
511 MOUSE_DPI=1000@1000
512
3641cff2
PH
513# Microsoft Arc Touch Mouse SE:
514mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE:
515 MOUSE_DPI=1000@2000
516
a020d2df
ES
517# Microsoft Surface Mouse
518mouse:bluetooth:v0000p0000:name:Surface Mouse:
519 MOUSE_DPI=2000@2000
520
f0e04d20
M
521##########################################
522# Mionix
523##########################################
524
525#Mionix Avior 7000
526mouse:usb:v22d4p1308:name:Laview Technology Mionix Avior 7000:
527 MOUSE_DPI=400@1000 *1600@1000 7000@1000
528 MOUSE_WHEEL_CLICK_ANGLE=15
529
c29b3379
RW
530##########################################
531# MODECOM
532##########################################
533
534# MODECOM MC-WM4 Wireless Optical Mouse
535mouse:usb:v0e8fp00a7:name:DaKai 2.4G RX:
536 MOUSE_DPI=*800@126 1600@126
537
eb59c75e
PH
538##########################################
539# Oklick
540##########################################
541
0068de37 542# Oklick 406S Bluetooth Laser Mouse
eb59c75e
PH
543mouse:bluetooth:v056ep0061:name:Laser BTmouse:
544 MOUSE_DPI=*800@333 1600@333
0068de37
TG
545
546##########################################
547# Razer
548##########################################
549
550# Razer Abyssus
551mouse:usb:v1532p0042:name:Razer Razer Abyssus:
552 MOUSE_DPI=3500@1000
729bc933 553
502f8269
FC
554# Razer DeathAdder Black Edition
555mouse:usb:v1532p0029:name:Razer Razer DeathAdder:
556 MOUSE_DPI=3500@1000
557
729bc933
BT
558##########################################
559# Roccat
560##########################################
561
562# Roccat Lua (ROC-11-310)
563mouse:usb:v1e7dp2c2e:name:ROCCAT ROCCAT Lua:
564 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
565 MOUSE_WHEEL_CLICK_ANGLE=15
c29b3379
RW
566
567##########################################
568# Sharkoon
569##########################################
570
571# Sharkoon Shark Force Gaming Mouse
572mouse:usb:v093ap2521:name:USB OPTICAL MOUSE:
573 MOUSE_DPI=*1000@125 1600@125 600@125
7b2cee49
MP
574
575##########################################
576# SteelSeries
577##########################################
578
579# SteelSeries Sensei Raw
580mouse:usb:v1038p1369:name:SteelSeries Sensei Raw Gaming Mouse:
581 MOUSE_DPI=1000@1022
5f390fc0
FDP
582
583##########################################
584# Trust
585##########################################
586
587# Trust illuminated mouse gxt 152
588mouse:usb:v145fp01ac:name:HID-compliant Mouse Trust Gaming Mouse:
589 MOUSE_DPI=*800@528 1200@537 1600@536 2400@521
ac741b47
RS
590
591 ##########################################
592 # Zelotes
593 ##########################################
594
595# Zelotes 5500 DPI 7 Button USB Wired Gaming Mouse
596mouse:usb:v1d57pad17:*
597 MOUSE_DPI=1000@500 1600@500 2400@500 3200@500 5500@500 *1000@1000 1600@1000 2400@1000 3200@1000 5500@1000