<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>khax.net &#187; SHMConfig</title>
	<atom:link href="http://blog.khax.net/tag/shmconfig/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.khax.net</link>
	<description>Adventures in Ubuntu systems administration</description>
	<lastBuildDate>Thu, 08 Jul 2010 02:01:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.khax.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/6ccca40b5ab19d33d91882e4d8f9a9c4?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>khax.net &#187; SHMConfig</title>
		<link>http://blog.khax.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.khax.net/osd.xml" title="khax.net" />
	<atom:link rel='hub' href='http://blog.khax.net/?pushpress=hub'/>
		<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/</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>agentk</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 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.khax.net&amp;blog=6484387&amp;post=41&amp;subd=khax&amp;ref=&amp;feed=1" width="1" height="1" />]]></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>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/khax.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/khax.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/khax.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.khax.net&amp;blog=6484387&amp;post=41&amp;subd=khax&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.khax.net/2009/02/08/adjusting-mouse-and-touchpad-speed-in-xorgconf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">agentk</media:title>
		</media:content>
	</item>
	</channel>
</rss>