XPS 13: Difference between revisions

From stacky wiki
(Created page with "== Natural scrolling == Tried installing [http://ubuntu-tweak.com/ ubuntu tweak], then doing setting Tweaks > Miscellaneous > Natural Scrolling to "on". Apparently, this simply m...")
 
Line 16: Line 16:
Option "VertScrollDelta" "-25"
Option "VertScrollDelta" "-25"
</pre>
</pre>
(the number 25 was obtained using <code>xinput</code> as described [http://andym3.wordpress.com/2012/05/27/fixing-natural-scrolling-in-ubuntu-12-04/ here])
The number 25 was obtained using <code>xipnput</code> as described [http://andym3.wordpress.com/2012/05/27/fixing-natural-scrolling-in-ubuntu-12-04/ here]. First do <code>xinput list</code> to find the id of the Cypress trackpad (in my case it's 12), and then <code>xinput list-props 12 | grep "Scrolling Distance"</code>.


After logout and login, seems to work great!


== Windows refund ==
== Windows refund ==

Revision as of 21:52, 27 June 2012

Natural scrolling

Tried installing ubuntu tweak, then doing setting Tweaks > Miscellaneous > Natural Scrolling to "on". Apparently, this simply modifies ~/.Xmodmap to be

pointer = 1 2 3 5 4 6 7 8 9 10 11 12

where the reversed 4 and 5 indicate that up and down scrolling is reversed. However, this doesn't reverse scrolling in nautilus or the package manager. See this bug.

Instead, trying the approach suggested in this comment. Since /etc/X11/xorg.conf.d didn't exist yet, I made it first.

sudo mkdir /etc/X11/xorg.conf.d
sudo cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/
sudo vi /etc/X11/xorg.conf.d/50-synaptics.conf

Then added the following line to the touchpad catchall inputclass:

Option "VertScrollDelta" "-25"

The number 25 was obtained using xipnput as described here. First do xinput list to find the id of the Cypress trackpad (in my case it's 12), and then xinput list-props 12 | grep "Scrolling Distance".

After logout and login, seems to work great!

Windows refund