Linux
Arch
Kde
<p>KDE setttings doesn't affect mouse acceleration, so we use xinput.</p>
<p>Get the mouse id:</p>
<pre><code>xinput list
</code></pre>
<p>Get all the props for the mouse:</p>
<pre><code>xinput list-props 14
</code></pre>
<p>Set the acceleration property. Value may need to be adjusted.</p>
<pre><code>xinput set-prop 14 669 -1
</code></pre>
<p>From: https: //unix.stackexchange.com/questions/90572/how-can-i-set-mouse-sensitivity-not-just-mouse-acceleration</p>