okay so i read about .fdi files and i am trying to mess around with sensitivity and resolution settings though these. I have tried the following two setups:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.product" contains="Razer Diamondback Optical Mouse">
<merge key="input.x11_driver" type="string">evdev</merge>
<merge key="input.x11_options.Sensitivity" type="int">1</merge>
<merge key="input.x11_options.Resolution" type="int">800</merge>
</match>
</device>
</deviceinfo>
The above has no effect on sensitivity, but the new settings do show in the "lshal" output.
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.product" contains="Razer Diamondback Optical Mouse">
<merge key="input.x11_driver" type="string">mouse</merge>
<merge key="input.x11_options.Sensitivity" type="int">1</merge>
<merge key="input.x11_options.Resolution" type="int">800</merge>
</match>
</device>
</deviceinfo>
I tried this after reading a forum post about .fdi files (changed x11_driver to "mouse"), it freezes my pointer until i unplug the mouse, how fun 
Any idea how I should set up this .fdi file ?
Bookmarks