Transition from HAL to udev - mouse config

Dan Nicholson dbn.lists at gmail.com
Fri May 14 10:37:41 PDT 2010


On Thu, May 13, 2010 at 11:45 PM, Nikos Chantziaras <realnc at arcor.de> wrote:
> I had the following HAL configuration for my mouse in X.Org server 1.7 for a
> 500DPI mouse:
>
> ----
> <match key="info.capabilities" contains="input.mouse">
> <merge key="input.x11_options.AccelerationProfile"
>       type="string">2</merge>
> <merge key="input.x11_options.AdaptiveDeceleration"
>       type="string">2</merge>
> merge key="input.x11_options.ExpectedRate" type="string">500</merge>
> <merge key="input.x11_options.FilterHalflife" type="string">5</merge>
> <merge key="input.x11_options.FilterChainProgression"
>       type="string">2</merge>
> <merge key="input.x11_options.VelocityCoupling"
>       type="string">0.15</merge>
> <merge key="input.x11_options.FilterChainLength" type="string">8</merge>
> <merge key="input.x11_options.Softening" type="string">true</merge>
> ----
>
> With X.Org server 1.8 and HAL disabled, how to I configure the above?

cat > /etc/X11/xorg.conf.d/90-mouse.conf << "EOF"
Section "InputClass"
    Identifier "My Mouse Tweaks"
    Option "AccelerationProfile" "2"
    Option "AdaptiveDeceleration" "2"
    ...
EndSection
EOF

See the InputClass section in xorg.conf(5).

--
Dan



More information about the xorg mailing list