70-mouse.hwdb 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. # This file is part of systemd.
  2. #
  3. # Database for the DPI setting of mice, trackballs, other pointer devices that
  4. # cannot be queried directly.
  5. #
  6. # The lookup keys are composed in:
  7. # 70-mouse.rules
  8. #
  9. # Note: The format of the "mouse:" prefix match key is a
  10. # contract between the rules file and the hardware data, it might
  11. # change in later revisions to support more or better matches, it
  12. # is not necessarily expected to be a stable ABI.
  13. #
  14. # Match string format:
  15. # mouse:<subsystem>:v<vid>p<pid>:name:<name>:
  16. #
  17. # Supported subsystems: usb, bluetooth
  18. # vid/pid as 4-digit hex lowercase vendor/product
  19. #
  20. # if vid/pid is unavailable, use
  21. # mouse:*:name:<name>:
  22. # if name is unavailable, use
  23. # mouse:<subsystem>:v<vid>p<pid>:*
  24. #
  25. # For example, the following 5 matches all match the same mouse:
  26. # mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
  27. # mouse:usb:*:name:Lenovo Optical USB Mouse:
  28. # mouse:usb:v17efp6019:*
  29. # mouse:*:name:Lenovo Optical USB Mouse:
  30. #
  31. # 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. # systemd-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. #
  39. # If your changes are generally applicable, preferably send them as a pull
  40. # request to
  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
  44. # udevadm info /dev/input/eventXX.
  45. #
  46. # Allowed properties are:
  47. # ID_INPUT_TRACKBALL
  48. # MOUSE_DPI
  49. # MOUSE_WHEEL_CLICK_ANGLE
  50. # MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL
  51. # MOUSE_WHEEL_CLICK_COUNT
  52. # MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL
  53. # MOUSE_WHEEL_TILT_HORIZONTAL
  54. # MOUSE_WHEEL_TILT_VERTICAL
  55. #
  56. #########################################
  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. #########################################
  64. # MOUSE_DPI #
  65. #########################################
  66. #
  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
  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.
  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.
  81. # The default resolution must be prefixed by an asterisk, the resolutions
  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
  89. # device supports multiple fixed frequencies, the order of items is
  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 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. #
  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).
  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.
  114. #
  115. #########################################
  116. # MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL #
  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.
  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.
  138. #########################################
  139. # MOUSE_WHEEL_TILT_HORIZONTAL #
  140. # MOUSE_WHEEL_TILT_VERTICAL #
  141. #########################################
  142. #
  143. # Indicates that the respective axis is not a mouse wheel rotation but a
  144. # tilt along that axis. Wheel tilt is most commonly used for horizontal
  145. # scroll wheel emulation on mice with only a single vertical wheel.
  146. #
  147. # The vertical and horizontal Axes are independently marked as tilt axes,
  148. # for example it is permitted to have a MOUSE_WHEEL_CLICK_COUNT or
  149. # MOUSE_WHEEL_CLICK_ANGLE for the vertical axis and mark the horizontal axis
  150. # marked as as MOUSE_WHEEL_TILT_HORIZONTAL.
  151. #
  152. # It is a bug to have either CLICK_COUNT or CLICK_ANGLE set on the same axis
  153. # as WHEEL_TILT. Applications should give priority to WHEEL_TILT and ignore
  154. # other settings.
  155. #
  156. # This is a flag only, permitted values: 0 or 1
  157. #
  158. # Sort by brand, type (usb, bluetooth), DPI, frequency.
  159. # For mice with switchable resolution, sort by the starred entry.
  160. ##########################################
  161. # Generic
  162. ##########################################
  163. mouse:*:name:*Trackball*:
  164. mouse:*:name:*trackball*:
  165. mouse:*:name:*TrackBall*:
  166. ID_INPUT_TRACKBALL=1
  167. ##########################################
  168. # Apple
  169. ##########################################
  170. # Apple MagicMouse
  171. # Note: this device changes name once connected to a mac, the name ends up
  172. # as $username`s mouse
  173. mouse:bluetooth:v05acp030d:name:*:
  174. MOUSE_DPI=1300@1000
  175. ##########################################
  176. # Chicony
  177. ##########################################
  178. # Chicony 2.4G Multimedia Wireless Kit MG-0919
  179. mouse:usb:v04f2p0963:name:Chicony 2.4G Multimedia Wireless Kit:
  180. MOUSE_DPI=1000@142
  181. ##########################################
  182. # Dell
  183. ##########################################
  184. # Dell MUAR DEL7
  185. mouse:usb:v413cp3012:name:Dell Dell USB Optical Mouse:
  186. MOUSE_DPI=400@166
  187. # Dell USB Laser Mouse
  188. mouse:usb:v046dpc063:name:DELL DELL USB Laser Mouse:
  189. MOUSE_DPI=1000@125
  190. # Dell MS116t
  191. mouse:usb:v413cp301a:name:PixArt Dell MS116 USB Optical Mouse:
  192. MOUSE_DPI=1000@125
  193. ##########################################
  194. # Dynex
  195. #########################################
  196. # Dynex Wired Optical Mouse (DX-WMSE2)
  197. mouse:usb:v0461p4d46:name:USB Optical Mouse:
  198. MOUSE_DPI=1000@125
  199. ##########################################
  200. # Fujitsu Siemens
  201. ##########################################
  202. mouse:usb:v0461p4d16:name:USB Optical Mouse:
  203. MOUSE_DPI=500@125
  204. ##########################################
  205. # Future Technology Devices International
  206. ##########################################
  207. # SNES Mouse plugged into a Retrode 2
  208. mouse:usb:v0403p97c1:name:Retrode SNES Mouse:
  209. MOUSE_DPI=235@126
  210. ##########################################
  211. # Generic
  212. ##########################################
  213. # FM-901 Wireless Mouse
  214. mouse:usb:v1ea7p000b:name:2.4G RF Mouse:
  215. MOUSE_DPI=*800@125 1600@125
  216. # WK-727
  217. mouse:usb:v04d9p0499:name:*
  218. MOUSE_DPI=800@125
  219. ##########################################
  220. # HandShoe Mouse
  221. ##########################################
  222. # HandShoe Mouse
  223. mouse:usb:v192fp0916:name:USB Optical Mouse:
  224. MOUSE_DPI=1000@128
  225. ##########################################
  226. # HoverStop
  227. ##########################################
  228. # Hoverstop active ergonomic mouse
  229. mouse:usb:v088dp1234:name:HoverStop NL Hoverstop active ergonomic mouse:
  230. MOUSE_DPI=400@129
  231. ##########################################
  232. # HP
  233. ##########################################
  234. # HP USB 1000dpi Laser Mouse
  235. mouse:usb:v0458p0133:name:Mouse Laser Mouse:
  236. MOUSE_DPI=1000@125
  237. MOUSE_WHEEL_CLICK_ANGLE=15
  238. # HP X1000
  239. # Dell MS111-T
  240. mouse:usb:v093ap2510:name:PixArt USB Optical Mouse:
  241. mouse:usb:v093ap2510:name:PIXART USB OPTICAL MOUSE:
  242. MOUSE_DPI=1000@125
  243. # HP X1200 Optical Mouse
  244. mouse:usb:v03f0p0641:name:PixArt HP X1200 USB Optical Mouse:
  245. MOUSE_DPI=1100@125
  246. ##########################################
  247. # IBM
  248. ##########################################
  249. # IBM USB Travel Mouse (MO32BO)
  250. mouse:usb:v04b3p3107:name:*
  251. MOUSE_DPI=800@125
  252. ##########################################
  253. # Kensington
  254. ##########################################
  255. # Kensington Expert Mouse trackball
  256. mouse:usb:v047dp1020:*Kensington Expert Mouse*
  257. ID_INPUT_TRACKBALL=1
  258. ##########################################
  259. # Lenovo
  260. ##########################################
  261. # Lenovo Optical USB Mouse
  262. mouse:usb:v17efp6019:name:Lenovo Optical USB Mouse:
  263. MOUSE_DPI=1000@125
  264. # Lenovo M-U0025-O
  265. mouse:usb:v17efp6019:name:Logitech Lenovo USB Optical Mouse:
  266. MOUSE_DPI=1000@166
  267. # Lenovo USB mouse model MO28UOL
  268. mouse:usb:v04b3p310c:name:USB Optical Mouse:
  269. MOUSE_DPI=400@142
  270. # Lenovo Precision USB Mouse
  271. mouse:usb:v17efp6050:name:Lenovo Precision USB Mouse:
  272. MOUSE_DPI=1200@127
  273. # Lenovo MOBGUL
  274. mouse:usb:v17efp601d:name:Primax Lenovo Laser Mouse:
  275. MOUSE_DPI=1600@125
  276. # Lenovo MOBGULA
  277. mouse:usb:v17efp6045:name:Lenovo USB Laser Mouse:
  278. MOUSE_DPI=1600@125
  279. # ThinkPad USB Laser Mouse
  280. mouse:usb:v17efp6044:name:ThinkPad USB Laser Mouse:
  281. MOUSE_DPI=1200@125
  282. ##########################################
  283. # Logitech
  284. ##########################################
  285. # Note: devices using the Logitech Unifying receiver will need two entries,
  286. # one for pre 3.19 with the wireless PID in the name, one for 3.19 with the
  287. # model name. The usb vid/pid is the same for all those devices.
  288. # Until 3.19 is available, this list just has the Wireless PID entry.
  289. ## G Series ##
  290. # Logitech G5 Laser Mouse
  291. mouse:usb:v046dpc049:name:Logitech USB Gaming Mouse:
  292. MOUSE_DPI=400@500 *800@500 2000@500
  293. # Logitech G500s Laser Gaming Mouse
  294. mouse:usb:v046dpc24e:name:Logitech G500s Laser Gaming Mouse:
  295. MOUSE_DPI=400@500 *800@500 2000@500
  296. # Logitech G9
  297. mouse:usb:v046dpc048:name:Logitech G9 Laser Mouse:
  298. MOUSE_DPI=400@1000 800@1000 *1600@1000
  299. # Logitech G9x [Call of Duty MW3 Edition]
  300. mouse:usb:v046dpc249:name:Logitech G9x Laser Mouse:
  301. MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
  302. # Logitech G100s Optical Gaming Mouse
  303. mouse:usb:v046dpc247:name:Logitech G100s Optical Gaming Mouse:
  304. MOUSE_DPI=*1000@500 1750@500 2500@500
  305. # Logitech G400 (Wired)
  306. mouse:usb:v046dpc245:name:Logitech Gaming Mouse G400:
  307. MOUSE_DPI=400@1000 *800@1000 1800@1000 3600@1000
  308. # Logitech G400s (Wired)
  309. mouse:usb:v046dpc24c:name:Logitech G400s Optical Gaming Mouse:
  310. MOUSE_DPI=400@1000 *800@1000 2000@1000 4000@1000
  311. # Logitech G402 Hyperion Fury
  312. mouse:usb:v046dpc07e:name:Logitech Gaming Mouse G402:
  313. MOUSE_DPI=400@1000 *800@1000 1600@1000 3200@1000
  314. # Logitech G500 Mouse
  315. mouse:usb:v046dpc068:name:Logitech G500:
  316. MOUSE_DPI=*1600@500 2600@500 3600@500
  317. # Logitech G502 Proteus Spectrum
  318. mouse:usb:v046dpc332:name:Logitech Gaming Mouse G502:
  319. MOUSE_DPI=1200@1000 *2400@1000 3200@1000 6400@1000
  320. # Logitech G700 Laser Mouse (Wired)
  321. mouse:usb:v046dpc06b:name:Logitech G700 Laser Mouse:
  322. # Logitech G700 Laser Mouse (Wireless)
  323. mouse:usb:v046dpc531:name:Logitech USB Receiver:
  324. MOUSE_DPI=*1000@500 3800@500 500@1000 1500@1000 2000@1000
  325. # Logitech G703 (Wired)
  326. mouse:usb:v046dpc087:name:Logitech G703 Wired/Wireless Gaming Mouse:
  327. # Logitech G703 (Wireless)
  328. mouse:usb:v046dpc539:name:Logitech USB Receiver Mouse:
  329. MOUSE_DPI=400@1000 800@1000 *1600@1000 3200@1000
  330. ## M Series ##
  331. # Logitech Wireless Mouse M185
  332. mouse:usb:v046dp4008:name:Logitech M185:
  333. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4008:
  334. MOUSE_DPI=1000@125
  335. # Logitech Wireless Mouse M510
  336. mouse:usb:v046dp1025:name:Logitech M510:
  337. MOUSE_DPI=1000@125
  338. # Logitech M705 (marathon mouse)
  339. mouse:usb:v046dp101b:name:Logitech M705:
  340. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101b:
  341. MOUSE_DPI=1000@125
  342. # Logitech M305 Wireless Optical Mouse
  343. mouse:usb:v046dpc52f:name:Logitech USB Receiver:
  344. MOUSE_DPI=1000@170
  345. # Logitech Wireless Mouse M310
  346. mouse:usb:v046dp1024:name:Logitech M310:
  347. MOUSE_DPI=1100@168
  348. # Logitech Wireless Mouse M325
  349. mouse:usb:v046dp400a:name:Logitech M325:
  350. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:400a:
  351. MOUSE_DPI=600@166
  352. MOUSE_WHEEL_CLICK_ANGLE=20
  353. # Logitech M570 trackball
  354. mouse:usb:v046dp1028:name:Logitech M570:
  355. MOUSE_DPI=540@167
  356. ID_INPUT_TRACKBALL=1
  357. ## MX Series ##
  358. # Logitech Performance MX
  359. mouse:usb:v046dp101a:name:Logitech Performance MX:
  360. MOUSE_DPI=1000@166
  361. # Logitech MX Revolution
  362. mouse:usb:v046dpc51a:name:Logitech USB Receiver:
  363. MOUSE_DPI=800@200
  364. # Logitech MX 518
  365. mouse:usb:v046dpc01e:name:Logitech USB-PS/2 Optical Mouse:
  366. MOUSE_DPI=400@125 *800@125 1600@125
  367. # Logitech MX1000 Laser Cordless Mouse
  368. mouse:bluetooth:v046dpb003:name:Logitech MX1000 mouse:
  369. MOUSE_DPI=800@80
  370. # Logitech Anywhere MX
  371. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:1017:
  372. mouse:usb:v046dp1017:name:Logitech Anywhere MX:
  373. MOUSE_WHEEL_CLICK_ANGLE=20
  374. # Logitech Anywhere MX 2S
  375. mouse:usb:v046dp406a:name:Logitech MX Anywhere 2S:
  376. MOUSE_WHEEL_CLICK_ANGLE=20
  377. # Logitech MX Master
  378. # Horiz wheel has 14 stops, angle is rounded up
  379. mouse:usb:v046dp4060:name:Logitech MX Master:
  380. mouse:usb:v046dp4041:name:Logitech MX Master:
  381. MOUSE_DPI=1000@166
  382. MOUSE_WHEEL_CLICK_ANGLE=15
  383. MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
  384. MOUSE_WHEEL_CLICK_COUNT=24
  385. MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
  386. # Logitech MX Master 2S (via Logitech Unifying Receiver)
  387. # Horiz wheel has 14 stops, angle is rounded up
  388. mouse:usb:v046dp4069:name:Logitech MX Master 2s:
  389. MOUSE_DPI=1000@125
  390. MOUSE_WHEEL_CLICK_ANGLE=15
  391. MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
  392. MOUSE_WHEEL_CLICK_COUNT=24
  393. MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
  394. # Logitech MX Master 2S (via Bluetooth)
  395. # Horiz wheel has 14 stops, angle is rounded up
  396. mouse:bluetooth:v046dpb019:name:MX Master 2S Mouse:
  397. MOUSE_DPI=2000@2000
  398. MOUSE_WHEEL_CLICK_ANGLE=15
  399. MOUSE_WHEEL_CLICK_ANGLE_HORIZONTAL=26
  400. MOUSE_WHEEL_CLICK_COUNT=24
  401. MOUSE_WHEEL_CLICK_COUNT_HORIZONTAL=14
  402. ## Other ##
  403. # Logitech M-BJ58 Optical Mouse
  404. mouse:usb:v046dpc00e:name:Logitech USB-PS/2 Optical Mouse:
  405. MOUSE_DPI=400@125
  406. # Logitech Mini Optical Mouse
  407. mouse:usb:v046dpc016:name:Logitech Optical USB Mouse:
  408. MOUSE_DPI=400@125
  409. # Logitech MX310 Optical Mouse
  410. mouse:usb:v046dpc01b:name:Logitech USB-PS/2 Optical Mouse:
  411. MOUSE_DPI=400@125
  412. # Logitech USB-PS/2 M-BT58
  413. mouse:usb:v046dpc03e:name:Logitech USB-PS/2 Optical Mouse:
  414. MOUSE_DPI=400@125
  415. # Logitech TrackMan Marble Wheel USB
  416. mouse:usb:v046dpc401:name:Logitech USB-PS/2 Trackball:
  417. MOUSE_DPI=400@125
  418. # Logitech Cordless MouseMan Optical M-RM63
  419. mouse:usb:v046dpc501:name:Logitech USB Receiver:
  420. MOUSE_DPI=800@63
  421. # Logitech USB-PS/2 M-BZ96C
  422. mouse:usb:v046dpc045:name:Logitech USB-PS/2 Optical Mouse:
  423. MOUSE_DPI=600@125
  424. # Logitech MX400 Performance Laser Mouse
  425. mouse:usb:v046dpc043:name:Logitech USB-PS/2 Optical Mouse:
  426. MOUSE_DPI=800@125
  427. # Logitech MX1000 Laser Cordless Mouse
  428. mouse:usb:v046dpc50e:name:Logitech USB RECEIVER:
  429. MOUSE_DPI=800@125
  430. # Logitech Cordless Click! Plus
  431. mouse:usb:v046dpc50e:name:Logitech USB Receiver:
  432. MOUSE_DPI=800@125
  433. # Logitech, Inc. RX 300 Optical Mouse
  434. mouse:usb:v046dpc040:name:Logitech USB-PS/2 Optical Mouse:
  435. MOUSE_DPI=800@125
  436. # Logitech, Inc. RX 250 Optical Mouse
  437. mouse:usb:v046dpc050:name:Logitech USB-PS/2 Optical Mouse:
  438. MOUSE_DPI=1000@142
  439. # Logitech B605 Wireless Mouse (also M505)
  440. mouse:usb:v046dp101d:name:Logitech B605:
  441. mouse:usb:v046dp101d:name:Logitech M505:
  442. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:101d:
  443. MOUSE_DPI=900@166
  444. # Logitech Cordless Desktop Wave Mouse
  445. mouse:usb:v046dpc517:name:Logitech USB Receiver:
  446. MOUSE_DPI=950@125
  447. # Logitech RX1000 Laser Mouse
  448. mouse:usb:v046dpc046:name:Logitech USB Optical Mouse:
  449. MOUSE_DPI=1000@125
  450. # Logitech M100 Optical Mouse
  451. mouse:usb:v046dpc05a:name:Logitech USB Optical Mouse:
  452. MOUSE_DPI=1000@125
  453. # Logitech USB Laser Mouse M-U0011-O rebranded as "terra Laser"
  454. mouse:usb:v046dpc065:name:Logitech USB Laser Mouse:
  455. MOUSE_DPI=1000@125
  456. # Logitech USB Laser Mouse M-U0007 [M500]
  457. mouse:usb:v046dpc069:name:Logitech USB Laser Mouse:
  458. MOUSE_DPI=1000@125
  459. # Logitech V500 Cordless Notebook Mouse
  460. mouse:usb:v046dpc510:name:Logitech USB Receiver:
  461. MOUSE_DPI=1000@125
  462. # Logitech M560 Wireless Mouse
  463. mouse:usb:v046dp402d:name:Logitech M560:
  464. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:402d:
  465. MOUSE_DPI=1000@125
  466. # Logitech MK260 Wireless Combo Receiver aka M-R0011
  467. mouse:usb:v046dpc52e:name:Logitech USB Receiver:
  468. MOUSE_DPI=1000@200
  469. # Logitech USB Laser Mouse M-UAS144 [LS1 Laser Mouse]
  470. mouse:usb:v046dpc062:name:Logitech USB Laser Mouse:
  471. MOUSE_DPI=1200@125
  472. # Logitech T620 (or, the soap)
  473. mouse:usb:v046dp4027:name:Logitech T620:
  474. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4027:
  475. MOUSE_DPI=1200@250
  476. # Logitech ZoneTouch Mouse T400
  477. mouse:usb:v046dp4026:name:Logitech T400:
  478. mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:4026:
  479. MOUSE_DPI=1300@166
  480. # Logitech TrackMan Wheel (USB)
  481. mouse:usb:v046dpc404:name:Logitech Trackball:
  482. MOUSE_DPI=300@125
  483. # Logitech Ultrathin Touch Mouse
  484. mouse:bluetooth:v046dpb00d:name:Ultrathin Touch Mouse:
  485. MOUSE_DPI=1000@1000
  486. # ImPS/2 Logitech Wheel Mouse
  487. mouse:ps2:*:name:ImPS/2 Logitech Wheel Mouse:
  488. MOUSE_DPI=400@100
  489. # ImExPS/2 Logitech Wheel Mouse
  490. mouse:ps2:*:name:ImExPS/2 Logitech Wheel Mouse:
  491. MOUSE_DPI=400@250
  492. ##########################################
  493. # Microsoft
  494. ##########################################
  495. mouse:usb:v045ep0040:name:Microsoft Microsoft 3-Button Mouse with IntelliEye(TM):
  496. MOUSE_DPI=400@125
  497. # Note: unsure that these work, it's likely that all devices on these
  498. # receivers show up with the same vid/pid/name
  499. # Microsoft Wireless Mouse 5000
  500. mouse:usb:v045ep0745:name:Microsoft Microsoft® 2.4GHz Transceiver v6.0:
  501. MOUSE_DPI=800@142
  502. # Microsoft Comfort Mouse 4500
  503. mouse:usb:v045ep076c:name:Microsoft Microsoft® Comfort Mouse 4500:
  504. MOUSE_DPI=1000@125
  505. # Microsoft Wireless Mobile Mouse 4000
  506. mouse:usb:v045ep0745:name:Microsoft Microsoft® Nano Transceiver v2.0:
  507. MOUSE_DPI=1000@142
  508. # Microsoft Sculpt Ergonomic Mouse
  509. mouse:usb:v045ep07a5:name:Microsoft Microsoft® 2.4GHz Transceiver v9.0:
  510. MOUSE_DPI=1000@142
  511. # Microsoft Arc Touch Mouse USB
  512. mouse:usb:v045ep07b1:name:Microsoft Microsoft® Nano Transceiver v1.0:
  513. MOUSE_DPI=1400@142
  514. # Microsoft Wireless Laser Mouse 8000
  515. mouse:bluetooth:v045ep0702:name:Microsoft Wireless Laser Mouse 8000:
  516. MOUSE_DPI=1000@1000
  517. # Microsoft Sculpt Comfort Mouse
  518. mouse:bluetooth:v045ep07a2:name:Microsoft Sculpt Comfort Mouse:
  519. MOUSE_DPI=1000@2000
  520. # Microsoft Arc Touch Mouse SE:
  521. mouse:bluetooth:v045ep07f3:name:Arc Touch Mouse SE:
  522. MOUSE_DPI=1000@2000
  523. # Microsoft Surface Mouse
  524. mouse:bluetooth:v0000p0000:name:Surface Mouse:
  525. MOUSE_DPI=2000@2000
  526. # Microsoft Classic IntelliMouse
  527. mouse:usb:v045ep0823:name:Microsoft Microsoft?? Classic IntelliMouse??:
  528. MOUSE_DPI=3200@1000
  529. ##########################################
  530. # Mionix
  531. ##########################################
  532. #Mionix Avior 7000
  533. mouse:usb:v22d4p1308:name:Laview Technology Mionix Avior 7000:
  534. MOUSE_DPI=400@1000 *1600@1000 7000@1000
  535. MOUSE_WHEEL_CLICK_ANGLE=15
  536. ##########################################
  537. # MODECOM
  538. ##########################################
  539. # MODECOM MC-WM4 Wireless Optical Mouse
  540. mouse:usb:v0e8fp00a7:name:DaKai 2.4G RX:
  541. MOUSE_DPI=*800@126 1600@126
  542. ##########################################
  543. # Oklick
  544. ##########################################
  545. # Oklick 406S Bluetooth Laser Mouse
  546. mouse:bluetooth:v056ep0061:name:Laser BTmouse:
  547. MOUSE_DPI=*800@333 1600@333
  548. ##########################################
  549. # P-Active
  550. ##########################################
  551. # P-Active Wireless Mouse PA-27K2
  552. mouse:usb:v0425p0101:name:G-Tech CHINA USB Wireless Mouse & KeyBoard V1.01 :
  553. MOUSE_DPI=800@125
  554. ##########################################
  555. # Razer
  556. ##########################################
  557. # Razer Abyssus
  558. mouse:usb:v1532p0042:name:Razer Razer Abyssus:
  559. MOUSE_DPI=3500@1000
  560. # Razer DeathAdder Black Edition
  561. mouse:usb:v1532p0029:name:Razer Razer DeathAdder:
  562. MOUSE_DPI=3500@1000
  563. ##########################################
  564. # Roccat
  565. ##########################################
  566. # Roccat Lua (ROC-11-310)
  567. mouse:usb:v1e7dp2c2e:name:ROCCAT ROCCAT Lua:
  568. 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
  569. MOUSE_WHEEL_CLICK_ANGLE=15
  570. ##########################################
  571. # Sharkoon
  572. ##########################################
  573. # Sharkoon Shark Force Gaming Mouse
  574. mouse:usb:v093ap2521:name:USB OPTICAL MOUSE:
  575. MOUSE_DPI=*1000@125 1600@125 600@125
  576. ##########################################
  577. # SteelSeries
  578. ##########################################
  579. # SteelSeries Sensei Raw
  580. mouse:usb:v1038p1369:name:SteelSeries Sensei Raw Gaming Mouse:
  581. MOUSE_DPI=1000@1022
  582. ##########################################
  583. # Trust
  584. ##########################################
  585. # Trust illuminated mouse gxt 152
  586. mouse:usb:v145fp01ac:name:HID-compliant Mouse Trust Gaming Mouse:
  587. MOUSE_DPI=*800@528 1200@537 1600@536 2400@521
  588. ##########################################
  589. # Zelotes
  590. ##########################################
  591. # Zelotes 5500 DPI 7 Button USB Wired Gaming Mouse
  592. mouse:usb:v1d57pad17:*
  593. MOUSE_DPI=1000@500 1600@500 2400@500 3200@500 5500@500 *1000@1000 1600@1000 2400@1000 3200@1000 5500@1000