I want to fix the mouse dpi to play some games like fps. On desktop the mouse work fine but to play some fps games or to play bullet chess games I get huge disadvantage.
Is there some software like razer synapse for linux to setup my mice??
I don’t know what your technical skill/experience level is like, but there have been a number of changes with how input devices are handled that can affect various users with unusual/high-end input hardware. For mice, there is now a udev-based hardware database that can be used to configure the DPI for a given device. Some background reading…
Here’s a Mouse-DPI-settings thread where I helped a user (based on the information in the blog)get their high-DPI mouse tuned the way they wanted it. It did require the ‘libevdev-tools’ package to be installed so that the ‘mouse-dpi-tools’ utility could be run to get the pertinent vendor/product IDs for the mouse in question. Then an entry is added to a custom file eg /usr/lib/hwdb.d/71-mouse.hwdb
Fow example, here’s an entry (in the included 70-mouse.hwdb) for a similar model mouse
Guys, Im beginner in linux, I dont know too much commands, can post to me an example using the terminal to setup my mouse to 1700dpi? My mice can reach 6400.
I followed the links but I dont have too much skills to do it.
I managed to find the chipset ID for the Razer Imperator 2012 online: 1532:002F
So, all that is needed is to create a file with an editor as root. For example, using the nano editor…
sudo nano /usr/lib/hwdb.d/71-mouse.hwdb
and adding this entry
# Razer Imperator
mouse:usb:v1532p002F:name:*:
MOUSE_DPI=1700@1000
where 1700 is the DPI and the polling rate is 1000Hz.
Note: For this to work properly, it must match the actual mouse configuration ie its current settings.
Once the file has been saved, udev needs updating with
sudo udevadm hwdb --update
then re-plug the mouse, and see whether there is any difference to the cursor behaviour. It may also be necessary to restart the X-server with CTRL+ALT+Backspace(twice) according to the blog.
BTW, as stated in the blog, it is possible to include multiple dpi@polling_rate entries for devices that are switchable…
In the simplest case, the entry lists a single resolution with a single frequency (e.g. “MOUSE_DPI=1000@125”), for switchable gaming mice it lists a list of resolutions with frequencies and marks the default with an asterisk (“MOUSE_DPI=400@50 800@50 *1000@125 1200@125”). And you can and should help us populate the database so it gets useful really quickly.
I have to created the folder hwdb.d into the lib folder because I not found this folder as su, so I created the file 71-mouse.hwdb with kdesu kwrite and added your entry.
So I restarted the X and unplug the mouse.
Wait, I setup to 6400 dpi but dont work, I think that I missed something.
$ kdesu kwrite (open the editor) , so i copied and pasted
Razer Imperator
mouse:usb:v1532p002F:name:*:
MOUSE_DPI=1700@1000
and created a new folder hwdb.d into /usr/lib/ so using the kwrite I saved to the file 71-mouse.hwdb.
After it sudo udevadm hwdb --update and
I restarted the X and unplug the mouse.