<?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>n3wblog &#187; mini</title>
	<atom:link href="http://n3wb.com/boolean/archives/tag/mini/feed/" rel="self" type="application/rss+xml" />
	<link>http://n3wb.com/boolean</link>
	<description>tech commentary and observations from the early 21st century</description>
	<lastBuildDate>Tue, 10 Aug 2010 18:44:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dell Mini 10 Trackpad fix for Crunchbang</title>
		<link>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-trackpad-fix-for-crunchbang/</link>
		<comments>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-trackpad-fix-for-crunchbang/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:02:31 +0000</pubDate>
		<dc:creator>boolean</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[synaptics]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[trackpad]]></category>

		<guid isPermaLink="false">http://n3wb.com/boolean/?p=605</guid>
		<description><![CDATA[Late last week I was griping about the poor trackpad performance on the Dell Mini 10 and decided to try to fix it. It was usable, but difficult and caused a lot of erroneous clicks and mouse-moves and was a bit like trying to use a Fisher Price toy to perform brain surgery. Clunky, imprecise, [...]]]></description>
			<content:encoded><![CDATA[<p>Late last week I was <a href="http://n3wb.com/boolean/archives/2010/01/dell-mini-10-with-ubuntu-crunchbang-touchpad-issues/">griping</a> about the poor trackpad performance on the Dell Mini 10 and decided to try to fix it. It was usable, but difficult and caused a lot of erroneous clicks and mouse-moves and was a bit like trying to use a Fisher Price toy to perform brain surgery. Clunky, imprecise, and dangerous.</p>
<p>A quick search found this superuser suggestion to install the Synaptics touchpad driver from the Ubuntu repository. Searching in the package manager turned up <strong>libsynaptics</strong> and <strong>gsynaptics</strong> so I installed them both.</p>
<p>Before this would work, I needed to create a file according to the instructions found <a href="http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/" target="_blank">Kogan Agora Netbook blog</a>:</p>
<p><code>sudo vim /etc/hal/fdi/policy/shmconfig.fdi</code></p>
<p>Once opened, it needed to have the following as its contents:</p>
<pre style="padding-bottom: 18px;"><xmp>< ?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
  <device>
    <match key="input.x11_driver" string="synaptics">
      <merge key="input.x11_options.SHMConfig" type="string">True</merge>
    </match>
  </device>
</deviceinfo>
</xmp></pre>
<p>I have no idea of that version number is correct, but this allowed me to move on. Additionally, in /etc/X11/xorg.conf, I added the section (via sudo vim):</p>
<pre style="padding-bottom: 18px;">Section "InputDevice"
        Identifier      "Synaptics Touchpad"
        Driver          "synaptics"
        Option          "SHMConfig"             "true"
EndSection
</pre>
<p>after rebooting (or logging out, or restarting X), you can then run gsynaptics from gmrun or the terminal. Even better, assign a new entry to the OpenBox menu to execute gsynaptics from a System menu item labeled Touchpad. Once you have that, you can decrease the sensitivity of the touchpad, add and tweak acceleration values and modify tapping behavior. It works really well and has radically reduced the number of accidental mouse actions. This tweak alone has made the Crunchbang netbook experience much much better.</p>
]]></content:encoded>
			<wfw:commentRss>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-trackpad-fix-for-crunchbang/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dell Mini 10 with Ubuntu /Crunchbang touchpad issues</title>
		<link>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-with-ubuntu-crunchbang-touchpad-issues/</link>
		<comments>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-with-ubuntu-crunchbang-touchpad-issues/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 01:33:00 +0000</pubDate>
		<dc:creator>boolean</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[trackpad]]></category>

		<guid isPermaLink="false">http://n3wb.com/boolean/?p=602</guid>
		<description><![CDATA[A commenter asked about the horrible touchpad on the Dell Mini 10. Not sure if he was using Linux or Windows, but a couple of quick searches found some mention of a better driver. Top link was on superuser.com and has some hopefully helpful links. I&#8217;ll post back with results when I&#8217;ve had a chance [...]]]></description>
			<content:encoded><![CDATA[<p>A commenter <a href="http://n3wb.com/boolean/archives/2009/12/dell-mini-10-and-crunchbang/#comments">asked</a> about the horrible touchpad on the Dell Mini 10. Not sure if he was using Linux or Windows, but a couple of quick searches found some mention of a better driver. Top link was on superuser.com and has some hopefully helpful links. I&#8217;ll post back with results when I&#8217;ve had a chance to try it out.</p>
<p><a href="http://superuser.com/questions/23522/dell-mini-10-with-ubuntu-touchpad-issues">Dell Mini 10 with Ubuntu &#8211; touchpad issues &#8211; Super User</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://n3wb.com/boolean/archives/2010/01/dell-mini-10-with-ubuntu-crunchbang-touchpad-issues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
