<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.khax.net &#187; touchpad</title>
	<atom:link href="http://blog.khax.net/tag/touchpad/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.khax.net</link>
	<description>Webdev &#38; Devops Blog</description>
	<lastBuildDate>Wed, 16 Nov 2011 23:18:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Adjusting mouse and touchpad speed in xorg.conf</title>
		<link>http://blog.khax.net/2009/02/08/adjusting-mouse-and-touchpad-speed-in-xorgconf/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adjusting-mouse-and-touchpad-speed-in-xorgconf</link>
		<comments>http://blog.khax.net/2009/02/08/adjusting-mouse-and-touchpad-speed-in-xorgconf/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 22:19:32 +0000</pubDate>
		<dc:creator>Karl Bowden</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mouse speed]]></category>
		<category><![CDATA[SHMConfig]]></category>
		<category><![CDATA[synaptics]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[xorg.conf]]></category>

		<guid isPermaLink="false">http://blog.khax.net/?p=41</guid>
		<description><![CDATA[My Dell XPS M1210 had received an install of Ubuntu *the* day it arrived. But the mouse and touchpad always accelerated at different speeds. The problem is that when I go to Mouse Preferences, I can only adjust cursor speed, not the speed of individual movement sources. After a lot of searching here are the [...]]]></description>
			<content:encoded><![CDATA[<p>My Dell XPS M1210 had received an install of Ubuntu *the* day it arrived. But the mouse and touchpad always accelerated at different speeds. The problem is that when I go to Mouse Preferences, I can only adjust cursor speed, not the speed of individual movement sources. After a lot of searching here are the samples from my xorg.conf file.</p>
<p>I only use two devices for cursor movement. The trackpad, and a Logitech bluetooth mouse. After booting with an Ubuntu live cd, the trackpad moves at a medium-quick pace, and once I connect to the mouse, the mouse moves at a very-fast pace.<span id="more-41"></span></p>
<h3>xorg.conf</h3>
<p>My xorg.conf file has been sum what adjusted from default, but my server layout here has two pointing devices,  Mouse0 as CorePointer and Synaptics Touchpad.</p>
<pre>Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen" 0 0
    InputDevice    "Generic Keyboard" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Synaptics Touchpad"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
<strong>    Option         "Sensitivity" "0.3"</strong>
EndSection

Section "InputDevice"
    Identifier     "Synaptics Touchpad"
    Driver         "synaptics"
    Option         "SendCoreEvents" "true"
    Option         "Device" "/dev/psaux"
    Option         "Protocol" "auto-dev"
    Option         "HorizEdgeScroll" "0"
    Option         "SHMConfig" "On"
<strong>    Option         "MaxSpeed" "0.15"</strong>
EndSection</pre>
<p>I cannot remember for sure which how much of the xorg.conf file I have changed in total, but the two lines in bold are the ones controlling device speed.</p>
<h3>Synaptics Touchpad Speed</h3>
<p>For the synaptics device there are three main lines to control pointer speed.</p>
<pre>Option "MinSpeed" "&lt;float&gt;"
Option "MaxSpeed" "&lt;float&gt;"
Option "AccelFactor" "&lt;float&gt;"</pre>
<p>The command to find your current touchpad settings is (in bold):</p>
<pre>~/ <strong>synclient -l | grep -E '( MinSpeed| MaxSpeed| AccelFactor)'</strong>
    MinSpeed                = 0.0822368
    MaxSpeed                = 0.15
    AccelFactor             = 0.00164474</pre>
<p>There you can see the MaxSpeed that I have changed.</p>
<p>You can also test touchpad speed adjustments without having to restart X by using synclient [var1=value1 [var2=value2] &#8230;]. Eg:</p>
<pre>~/ synclient MaxSpeed=0.15</pre>
<p>If you are following this example, also add the SHMConfig line if it is not yet present, as it adds the &#8216;Touchpad&#8217; tab to the mouse preferences screen that allows you to set the touchpad to turn off while typing.</p>
<h3>Mouse Speed</h3>
<p>I cannot remember what the speed is relative to for the mouse section, but some quick tweeking and playing should see you straight. You will need to restart X each time you adjust the setting for it to take effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.khax.net/2009/02/08/adjusting-mouse-and-touchpad-speed-in-xorgconf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

