Just got a Razer Imperator gaming mouse and thought I would share some settings which worked well for me.
I booted windows and installed the Razer configuration utility to set the DPI to 5600 DPI and polling rate to 1000Hz for games (I don't use the top buttons to switch DPI profiles as I use those for gaming macros).
Booting Linux with those settings obviously makes the mouse pointer SUPER fast.
The best way to fix this is to use xinput to find the right values.
use:
xinput list
to find the device
Note: if you get 2 Razer mice in the list, try setting the pointer speed on each in turn to find out which one is the correct device.
and:
xinput list-props [device]
to discover the supported properties.
I hate pointer acceleration so I basically only played with ConstantDeceleration.
Once you found the right values store them in /etc/X11/xorg.conf.d/10-mouse.conf.
Here is my mouse section for reference.
Code: Select all
Section "InputClass"
Identifier "mouse"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "AutoServerLayout" "on"
Option "AccelerationProfile" "-1"
Option "ConstantDeceleration" "5.0"
Option "VelocityScale" "1.0"
EndSectionEnjoy your super smooth mouse in Gentoo!
Edit: updated for newer Xorg



