请问USB gaming mouse驱动 驱动程序错误怎么办

From ArchWiki
(Redirected from )
This article or section needs language, wiki syntax or style improvements.
Reason: style still to fix, unclear sections (Discuss in )
Related articles
This article describes how to configure a mouse with more than 3 buttons.
Note: These are helper comments, and can be ignored if you are looking for nothing but raw information. Due to community feedback, I decided to add a bit more commenting that describes what's going on "behind the scenes" with this configuration.
We will be using the evdev driver for Xorg. EVentDEVice is an advanced driver for USB input devices which offers much greater power over the standard Xorg mouse driver. It is also more "direct" than the mouse driver, allowing lower latency and less translation issues.
Note that evdev is both a kernel module and an Xorg input driver. All the Arch kernels come with the evdev module.
With the newer Xorg 11R7.0 it seems only the following changes to /etc/X11/xorg.conf need to be made with nothing else needing to be done.
Note: To get accurate information it is sometimes required to execute this command from a boot where no Xorg or mouse drivers have been loaded.
The first step is to find the name of the mouse / mice. To do this, execute the following command:
$ egrep "Name|Handlers" /proc/bus/input/devices | egrep -B1 'Handlers.*mouse'
This should output something like this:
N: Name="Logitech USB Gaming Mouse"
H: Handlers=mouse0 event0 ts0
Or this if you have more than one mouse:
N: Name="Kensington Kensington Expert Mouse Wireless"
H: Handlers=event0 mouse0
N: Name="Logitech USB Receiver"
H: Handlers=kbd event2 mouse1
The mouse is the one that has the Handlers=mouse0, so the name of the device is Logitech USB Gaming Mouse.
Note: My mouse is a Logitech G5; your mouse is probably different, and therefore the Name will be different.
Copy the name of the device, and open up /etc/X11/xorg.conf.
Now, we need an entry in xorg.conf that tells X how to use this mouse. It should look something like this:
Section "InputDevice"
Identifier
"Evdev Mouse"
"Name" "Logitech USB Gaming Mouse"
"keyBits" "~272-287"
"relBits" "~0-2 ~6 ~8"
"CorePointer"
EndSection
Replace the Name option with the name you copied from above. You may also omit the CorePointer option if you use multiple mice or experience errors when attempting to load Xorg. The other options are all basic mouse configurations for evdev and should work with most mice.
Next, we need to tell X to use the mouse, so look in xorg.conf for ServerLayout.
Modify the ServerLayout section to use "Evdev Mouse" as the device. When you are done, it should look something like this:
Section "ServerLayout"
Identifier
"Default Layout"
"Monitor0" 0 0
InputDevice
"Keyboard0" "CoreKeyboard"
InputDevice
"Evdev Mouse" "CorePointer"
EndSection
The only thing you should change in the layout is the InputDevice line that refers to your mouse.
That should be all that is required.
Edit by: xxsashixx
This is for Logitech G5 Mouse users. I have not tested this for other mice, but if you do not add this, your mouse MAY not work.
If you do not need to add this, then do not.
Option "Device" "/dev/input/event[#]"
in the InputDevice section or else the mouse will not be picked up.
[#] = The number you got from:
egrep "Name|Handlers" /proc/bus/input/devices
Edit by: bapman
With the above method, your mouse might not to work after reboot (event number changes). To fix this, you can use symlinks in /dev/input/by-id. For example:
"Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-event-mouse"
To find the appropriate id, do:
ls /dev/input/by-id/
Edit by: Diamir
This article or section is out of date.
Reason: The udev rule will not work, the SYSFS= and BUS= keys have been removed . (Discuss in )
With a Desktop type keyboard-mouse, this does not work because there is only one USB attachment and /dev/input/by-id contains only the keyboard.
In this case, we can create a udev rule to get a consistent link.
The following rules create the link /dev/input/usbmouse which points on the correct event entry:
KERNEL=="event[0-9]*", BUS=="usb", SYSFS{modalias}=="usb:v045Ep008Ad7373dc00dsc00dp00ic03isc00ip00", SYMLINK+="input/usbmouse"
You can call it z10_usb_mouse.rules and put it in /etc/udev/rules.d
The cryptic value to use for SYSFS(modalias) can be gotten in the following way:
enter the command cat /proc/bus/input/devices
You will find the keyboard and the mouse and see event4 is the mouse in this case:
I: Bus=0003 Vendor=045e Product=008a Version=0111
N: Name="Microsoft Microsoft Wireless Optical Desktop? 1.00"
P: Phys=usb-.0-2/input0
S: Sysfs=/devices/pci0:00:10.0/usb1/1-2/1-2:1.0/input/input3
H: Handlers=kbd event0
B: EV=120013
B: KEY=7 ffff febeffdff3cfffff fffffffffffffffe
B: LED=107
I: Bus=0003 Vendor=045e Product=008a Version=0111
N: Name="Microsoft Microsoft Wireless Optical Desktop? 1.00"
P: Phys=usb-.0-2/input1
S: Sysfs=/devices/pci0:00:10.0/usb1/1-2/1-2:1.1/input/input4
H: Handlers=kbd mouse0 event1
B: KEY=0 0 1fd800d448 1e 0
B: REL=7c3
So I enter the following command (adapt event # to your particular case):
udevinfo -a -p $(udevinfo -q path -n /dev/input/event4) | grep modalias
ATTRS{modalias}=="input:b8Ae,2,4,k71,72,73,74,83,86,8A,8C,8E,8F,9B,9C,9E,9F,A3,A4,A5,A6,AB,AC,B5,B6,CE,D2,D5,E2,E7,E8,E9,EA,EB,110,111,112,113,114,1B0,1B1,r0,1,6,7,8,9,A,am4,lsfw"
ATTRS{modalias}=="usb:v045Ep008Ad7373dc00dsc00dp00ic03isc00ip00"
ATTRS{modalias}=="pci:v043sd000080EDbc0Csc03i00"
grab the ATTRS which becomes with usb: to complete "SYSFS{modalias}== " entry
And finally, use usbmouse as the Device Option in xorg.conf:
Option "Device" "/dev/input/usbmouse"
It works. Horizontal scroll works out of the box - push the scroll wheel left or right. Thumb buttons also work as next/previous page.
It works. Note: buttons can be mapped to functions easily in Preferences & Advanced & Shortcuts & Mouse set-up. For example, to bind button 8 to back:
Navigate to mouse set-up and expand the Application drop-down
In the input column, type: Button 8
In the actions column, type: Back
(Tested in version 32)
To get back and forward enabled, instead of scroll left/right, change the following settings in about:config:
mousewheel.default.action.override_x
mousewheel.default.delta_multiplier_x
By default, left right scroll on a FX/MX mouse translates into back/forward, respectively. If you do not like this, open about:config and change a few values:
mousewheel.horizscroll.withnokey.action
mousewheel.horizscroll.withnokey.numlines
OR (tested on Logitech G5)
mousewheel.horizscroll.withnokey.action
mousewheel.horizscroll.withnokey.numlines
NOTE: If you use a positive value for numlines, your left/right will switch, ie: pressing left scrolls the window to the right.
OR (tested on Microsoft Wireless Intellimouse explorer 2.0)
mousewheel.horizscroll.withnokey.action
mousewheel.horizscroll.withnokey.numlines
mousewheel.horizscroll.withnokey.sysnumlines
If you use the true value for numlines, your left/right will be inverted.
The following maybe redundant depending on whether xev detects all your mouse buttons correctly (functions can be mapped on a per-app basis) or you want to change the default behaviour.
To do this we need to map keystrokes to the desired mouse buttons and install
In most modern applications which use back/forward features, XF86Back is mapped to back and XF86Forward is mapped to forward by default. On most MX mice the thumb buttons resolve to 8 & 9. If your mouse is different, check button numbers using xev and replace the numbers used in the example (b:8 & b:9).
So if you have an MX mouse you would create the file ~/.xbindkeysrc, containing:
# Mouse Buttons
"xvkbd -xsendevent -text "\[XF86Back]""
m:0x0 + b:8
"xvkbd -xsendevent -text "\[XF86Forward]""
m:0x0 + b:9
Now to test... Run the following command and if it works as expected remember to add xbindkeys to .xinitrc or somewhere where it will be executed each time X starts. Also, this should work with Epiphany and Konqueror without any additional configuration or use of
The above info and more help may be found in the
This article or section needs language, wiki syntax or style improvements.
Reason: Says how, but not why. (Discuss in )
None of the below is necessary with evdev, but it's here for non-evdev users. Unless something does not work on your mouse, ignore this whole section!
If you use .xinitrc to load X, then add this to .xinitrc (change for the number of buttons you have):
xmodmap -e "pointer = 1 2 3 6 7 8 9 10 11 12 4 5" &
Note that buttons 4 and 5 must go on the end or else your scroll wheel will not work.
If you use GDM/XDM/KDM instead of .xinitrc, then create the file ~/.Xmodmap and add this to it (change for the number of buttons you have):
pointer = 1 2 3 6 7 8 9 10 11 12 4 5
GDM/XDM/KDM read the ~/.Xmodmap file if it's present, whereas startx does not. Another solution would be to add this to your ~/.xinitrc: xmodmap ~/.Xmodmap. This would allow you to use *DM and startx while only having to edit ~/.Xmodmap when you need to make changes.
You may have to play with these numbers a bit to get your desired behavior. Some mice use buttons 6 and 7 for the scroll wheel, in which case those buttons would have to be the last numbers. Keep playing with it until it works!
You can also check to see which buttons are being read with a program called 'xev', which is part of XOrg. When xev is run, it will show a box on your desktop that you can put the cursor into and click buttons to find out what buttons have been mapped.
For debugging purposes xinput can be used as it is able to change the button map on the fly in userspace. The following line corrects the button mapping (there have been reported cases with Logitech M505/B605 mice and possibly others) so the received events are mapped correctly:
$ xinput set-button-map "$(xinput | awk -F'[=]' '/Logitech M505\/B605/ {print $2}' | awk '{print $1}')" 1 2 3 4 5 8 9
The following methods use standard X.org mouse input driver (xf86-input-mouse) instead of using the evdev driver. It works on mice up to 7 buttons.
Edit /etc/X11/xorg.conf InputDevice section for your mouse to reflect the changes shown below. Then restart X and you are done.
This has been tested on an IntelliMouse Explorer 3.0.
Your mileage may vary, as this does not seem to work for all said mice.
"Protocol" "IMPS/2"
"Device" "/dev/input/mice"
"ZAxisMapping" "4 5 6 7"
This has been tested on a Logitech MX400 and MX518 and should work on any mx series mouse with up to 7 buttons.
"Protocol" "ExplorerPS/2"
"Device" "/dev/input/mice"
"Buttons" "7"
"ZAxisMapping" "4 5"
"ButtonMapping" "1 2 3 6 7"
Settings from above also works for Microsoft InteliMouse Explorer 3.0 that connects through USB.
This has been tested on a Logitech MX400 and should work on most mice with up to 7 buttons.
"Protocol" "auto"
"Device" "/dev/input/mice"
"Buttons" "7"
"ZAxisMapping" "4 5"
"ButtonMapping" "1 2 3 6 7"
This has been tested to work with Logitech MX1000.
"Protocol" "auto"
"Device" "/dev/input/mice"
"Emulate3Buttons" "no"
"Buttons" "12"
"ZAxisMapping" "4 5 7 6 8 9"
easystroke is a mouse gesture application, but it can be used to manage mouse buttons as well. It's main advantage o-ver btnx is that it's more versatile. On the other hand, it's user-based, so any user has to configure it to reflect his own needs.
In order to set up easystroke to manage your extra mouse buttons, you will need to do this (example features Back/Forward mouse buttons) :
easystroke -g
Go to Preferences tab & Additional buttons & Add, and add any special button.
Note: In case of easystroke does not automatically detect mouse buttons, you can specify it manually. Button identifiers (numbers) can be viewed by xev.
Go to Action tab & Add action, give the new action a name, as Type choose "Key", as Details set "Alt+Left" for Back button, "Alt+Right" for Forward button, as Stroke click the proper mouse button (confirm if a warning is displayed), and voilà! Your mouse button is configured.
Note: Since Firefox 3, buttons 6 + 7 are no longer mapped to back and forward as in Firefox 2. Therefore, if using the above methods in Xorg, refer further to corrective methods below if necessary.
For MX518, try changing the above ButtonMapping Option to:
"ButtonMapping" "1 2 3 8 9"
And restart X. (Successfully tested on MX518)
Another method:
Leave back/forward mapped to 6+7 in xorg. In Firefox 3 about:config change the following keys:
mousewheel.horizscroll.withnokey.action = 2
mousewheel.horizscroll.withnokey.numlines = -1
mousewheel.horizscroll.withnokey.sysnumlines = false
Let us say we want to bind some mouse buttons to keyboard ones. The problem we will encounter is that we do not know how to emulate a key press. Here comes in handy . We can use it along with .
$ xbindkeys --defaults && ~/.xbindkeysrc
$ xbindkeys
To restart xbindkeys type:
$ pkill -f xbindkeys
$ xbindkeys
Here is example ~/.xbindkeysrc config:
-text "\[F8]""
m:0x0 + b:8
-text "\[Shift]\[Left]""
m:0x0 + b:9
-text "\[Shift]\[Right]""
m:0x0 + b:10
m:0x0 + b:11
m:0x0 + b:12
If you want to check your mouse buttons number use xev. Do not forget to type capital letters in xvkbd -text usage and to escape opening bracket with \ or you get simply [Shift] written.
Here is an example for xbindkeys to enable x selection paste(third click pasting), you need both xsel and xvkbd installed, What it does it executes that command whenever button 13 of the mouse is pressed (in ~/.xbindkeysrc) :
"xvkbd -no-jump-pointer -text "\D1$(xsel)" 2&/dev/null"
This is an example for a keybinding for Meta+M:
-text "\{+Super_L}m\{-Super_L}""
Some programs, especially games, use different methods of reading input, so another program is needed: AUR.
For the evrouter command to be able to read the input devices, it will have to be run in the input group (or as root). This can be achieved by adding yourself to that group:
# gpasswd -a user input
Now we can use the --dump option to display what the button to be changed is called:
Tip: For USB devices udev will usually create symbolic links in /dev/input/by-id/ which can be used to refer to specific devices.
$ evrouter --dump /dev/input/event*
0: /dev/input/event0: AT Translated Set 2 keyboard
1: /dev/input/event1: Microsoft Microsoft Trackball Explorer(R)
2: /dev/input/event2: Sleep Button
3: /dev/input/event3: Power Button
4: /dev/input/event4: Power Button
5: /dev/input/event5: PC Speaker
Display name: :0.0
Now press the buttons that you wish to change:
Window "(null)": # Window title
# Window "(null)": # Resource name
# Window "(null)": # Class name
"Microsoft Trackball Explorer(R)" "/dev/input/event1" none key/275 "fill this in!"
Window "(null)": # Window title
# Window "(null)": # Resource name
# Window "(null)": # Class name
"Microsoft Trackball Explorer(R)" "/dev/input/event1" none key/276 "fill this in!"
The line that ends with "fill this in!" can be copied into the config file which by default is ~/.evrouterrc. For example, using the X11 key event emulator built into evrouter:
~/.evrouterrc
"Microsoft Trackball Explorer(R)" "/dev/input/event*" any key/275 "XKey/1"
"Microsoft Trackball Explorer(R)" "/dev/input/event*" any key/276 "XKey/2"
The 'event1' was changed to 'event*' in case udev gives it a different device number at boot. The 'none' was changed to 'any' so that the rule works even if any modifier keys are pressed when the button is pressed. See man 1 evrouter for a full explanation of the fields.
Tip: Rules can apply only to specific windows, see man 1 evrouter for details.
After setting up the config file, run it as a daemon:
$ evrouter /dev/input/event*
To stop the daemon:
$ evrouter -q
$ rm -f /tmp/.evrouter*
Note: evrouter will fail to start if the /tmp/.evrouter:0.0 file exists but does not delete it when exiting, so you will have to delete it yourself.
If you want to bind the buttons + and - in G5/7 mouse, which normally changes DPI, you have to use g5hack
released by a lomoco author.
wget http://piie.net/temp/g5_hiddev.c
gcc -o g5hack g5_hiddev.c
./g5hack /dev/usb/hiddev0 3
This will change your DPI to 2000, light the 1st LED and disables DPI on-the-fly changing, so you can use it with evrouter. If you would use it frequently I suggest you to copy it to the /usr/bin directory:
# cp g5hack /usr/bin/
If you want to bind your + and - buttons you must copy the line at the bottom (one with the comment '"-" button does not function anymore' above) to the mode you will be using, like, for example, under the "case 3:" you can put it on the line with the comment 'turn on third led' above (deleting the old one before of course).
For the newest G5 mouse which is reported as "product 0xc049" original hack does not work. You have to simply change the #define MOUSE_G5 0xc041 to #define MOUSE_G5 0xc049 and recompile.
You can execute the g5hack tool at system start up using systemd unit. See
for detail.
AUR provides configurable mouse wheel and button mapping. It can be configured globally or for individual processes.
Sample ~/.imwheelrc to enable back/forward thumb buttons for all applications and increased scroll speed in Chromium:
"^chromium$"
None, Up, Button4, 3
None, Down, Button5, 3
None, Thumb1, Alt_L|Left
None, Thumb2, Alt_L|Right
for Logitech MX mice will help you set the proper resolution, enable or disable smart scroll (with boot time support too!), etc. lomoco is available from the [community] repository and can be installed with the following command:
Be sure to look at /etc/udev/lomoco_mouse.conf and set up the the options you want to be automatically applied when the mouse gets loaded by .
Note: The lomoco package may be out of date. There is a hack for newer Logitech mice:
It is known that in xorg-server 1.18.0-3 side buttons of G600 are not recognized as a separate keyboard device, but another mouse which causes strange (moving mouse cursor to an edge of screen when one of main mouse buttons are clicked) behavior.
To force xorg to recognize them as a keyboard buttons, add following section to your /etc/X11/xorg.conf:
Section "InputClass"
Identifier "G600 misconfiguration fix"
MatchProduct "G600"
# Match just the keyboard section of the G600
MatchIsKeyboard "true"
# evdev assumes it's a mouse when it sees the absolute axis. Stop that from happening.
Option "IgnoreAbsoluteAxes" "on"
EndSection
These mouse is designed for Windows 8, and has a non conventional behavior: the mouse appears as a pair of mouse and keyboard and some buttons don't emit the standard mouse button event, but instead a combination of keyboard and mouse button. This prevent a "confortable" use of this mouse under Linux.
This driver allow to use this mouse like an ordinary mouse. It's recommend use it with xbindkeys to mapping buttons.
This article or section needs language, wiki syntax or style improvements.
Reason: should be packaged in
(Discuss in )
(already merged into kernel v4.2)
For similar setup, specially for Logitech MX, see:
: Hidden categories:
Navigation menuShop by categoryEnter your search keywordAll CategoriesHi ( to bid or buy)Notification
Alienware Gaming Mouse
Alienware Gaming Mouse
Browse RelatedBrowse RelatedAlso shop inAlso shop in
$53.99Buy It NowFree Shipping130 watching | 697 sold
Alienware TactX premium gaming Mouse has FTM features to enhance the Massive Multiplayer Online Role Playing Game (MMORPG) gaming experience and positioned to offer a differentiator for Alienware gami...Condition:NewTime left:12d 12h 17mItem location:California
$17.49Buy It NowFree Shipping49 watching | 134 soldWhy choose it:1.6 Speed DPI Adjustment. With one DPI button, it is easily for you to shift between 00-00 DPI and flashing light will indicate you which mode you are.
$9.24Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$13.29Buy It NowFree Shipping11 watching | 22 soldAdjustable DPI Switch: 1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$10.09Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$10.25Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$59.99Buy It NowFree Shipping5 watchingThis product is brand new in box!!
$9.66Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$9.68Buy It NowFree ShippingAdjustable DPI Switch: 1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$11.38Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$12.87Buy It NowFree ShippingAdjustable DPI Switch: 1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$69.99Buy It NowFree ShippingManufacturer Model:VXMMT. Alienware TactX premium gaming Mouse has FTM features to enhance the Massive Multiplayer Online Role Playing Game (MMORPG) gaming experience and positioned to offer a differe...
$9.37Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$9.88Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$49.99Buy It Nowor Best Offer11 watching | 8 soldItem for sale isaDell Alienware TactX 9 Button Black USB Laser Mouse M-U0008-O W/ ALIEN MOUSEPAD. Auction Includes:This sales includes aDell Alienware TactX 9 Button Black USB Laser Mouse M-U0008-O.
$74.95Buy It NowFree ShippingAlienware TactX premium gaming Mouse has FTM features to enhance the Massive Multiplayer Online Role Playing Game (MMORPG) gaming experience and positioned to offer a differentiator for Alienware gami...
$9.14Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$10.73Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI. Adjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$8.95Buy It NowFree Shipping3 watching | 3 soldBrand New ALIENWARE Custom Mouse Pad. If you would like to add a text please send me a message
text, text color, text font name and placement location.
$14.99Buy It NowFree ShippingUp for sale pre owned Alienware Black Hard Plastic Mouse Pad. The mouse pad is in good condition, with some minor wear. The length of the pad is almost 11'' Inches, and the overall height is 8'' Inche...
$8.99Buy It Nowor Best OfferFree ShippingImage printed on mousepad with latest printing technology. Large size rectangular mousepad about:9.25" x 7.75" 100% Brand NEW Unique Design! Made from Polyester fabric on top surface Neoprene rubber o...
$6.99Buy It Nowor Best OfferFree Shipping23 watching | 138 soldThis 9.25"x7.75" rectangular mouse pad is made of a durable heat-resistant polyester fabric top. The mouse pad is 1/8" thick. It will not discolor or fade, machine washable.
$7.90Buy It NowFree ShippingMousepad is made of a durable heat-resistant polyester fabric top, will keep your mouse rolling in style. Backed with a neoprene rubber non-slip backing, keeps the mousepad from sliding.
$6.99Buy It NowThis 9.25" x 7.75" rectangular mouse pad is made of a durable heat-resistant polyester fabric top, will keep your mouse rolling in style. Backed with a neoprene rubber non-slip backing, keeps the mous...
$8.80Buy It NowFree ShippingItem details:Color: As the picture shows. (We have many other funny designs of mouse pads. Easy to carry. 100% brand new and high quality. Refund will be given as: Money back or exchange (buyer's choi...
$2.000 bidsThis 9.25" x 7.75" rectangular mousepad is made of a durable heat-resistant polyester fabric top, will keep your mouse rolling in style. Backed with a neoprene rubber non-slip backing, keeps the mouse...
$10.75Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$9.62Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$9.25Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
$9.83Buy It NowFree ShippingAdjustable DPI Switch:1000DPI / 1600DPI / 2400DPI / 3200DPI /5500DPI.
Recommended Buying Guides3Published byMany gamers struggle to compete in the world of competitive gaming. Razer Inc. specializes in making mice that level the playing field for such people. Razer customizable gaming mice allow PC gamers to...Published byUnless you are fully devoted to the touchpad on your laptop, your mouse is an important part of controlling your computer. When gaming, fast, precise movements are essential. A mousepad lets your mouse...2Published byWhen it comes to playing PC games, most gamers prefer to use a gaming mouse. Unlike the conventional PC mouse, a gaming mouse delivers greater accuracy and boasts an ergonomic design that lends itself...Browse RelatedAdditional site navigationCopyright (C)
eBay Inc. All Rights Reserved. , ,
This page was last updated: &Aug-02 02:07. Number of bids and bid amounts may be slightly out of date. See each listing for international shipping options and costs.

我要回帖

更多关于 usbgamingmouse 的文章

 

随机推荐