{"id":387,"date":"2023-03-05T12:35:31","date_gmt":"2023-03-05T10:35:31","guid":{"rendered":"http:\/\/www.crazy-memorys.ch\/IfixedIT\/?p=387"},"modified":"2025-05-01T16:27:02","modified_gmt":"2025-05-01T14:27:02","slug":"synaptic-touchpad-scroll-speed-on-linux","status":"publish","type":"post","link":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/?p=387","title":{"rendered":"Synaptic Touchpad Scroll Speed on Linux"},"content":{"rendered":"\n<p>There are two solutions. The first one just needs some terminal magic, for the other one you need to change a conf.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Note from the future: Maybe xinput doesn&#8217;t exist anymore the next time you have a problem. Try this instead: <a href=\"https:\/\/askubuntu.com\/questions\/1413750\/how-to-change-2-finger-touchpad-scroll-speed-on-ubuntu-22-04\">https:\/\/askubuntu.com\/questions\/1413750\/how-to-change-2-finger-touchpad-scroll-speed-on-ubuntu-22-04<\/a><\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Terminal Magic<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open a terminal<\/li>\n\n\n\n<li>Find your device:<br>xinput &#8211;list<\/li>\n\n\n\n<li>Look at the usable properties:<br>xinput &#8211;list-props [NUMMER]<\/li>\n\n\n\n<li>Change a prop like this:<br>xinput &#8211;set-prop 10 372 30<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-32-20.png\"><img loading=\"lazy\" decoding=\"async\" width=\"663\" height=\"331\" src=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-32-20.png\" alt=\"\" class=\"wp-image-471\" srcset=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-32-20.png 663w, https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-32-20-300x150.png 300w\" sizes=\"auto, (max-width: 663px) 100vw, 663px\" \/><\/a><\/figure>\n\n\n\n<ol class=\"wp-block-list\">\n<li><\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-37-24.png\"><img loading=\"lazy\" decoding=\"async\" width=\"670\" height=\"489\" src=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-37-24.png\" alt=\"\" class=\"wp-image-472\" srcset=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-37-24.png 670w, https:\/\/www.crazy-memorys.ch\/IfixedIT\/wp-content\/uploads\/2023\/03\/Bildschirmfoto-vom-2024-10-22-20-37-24-300x219.png 300w\" sizes=\"auto, (max-width: 670px) 100vw, 670px\" \/><\/a><\/figure>\n\n\n\n<ol class=\"wp-block-list\">\n<li><\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">xserve \/ xorg<\/h2>\n\n\n\n<p>So I messed around with Linux on my old Lenovo 3000 N200.<br>Zorin OS Lite works very well out of the box. The only thing that annoys me, is the super fast scroll speed.<\/p>\n\n\n\n<p>This post explains everything, huge thanks to <a href=\"https:\/\/askubuntu.com\/users\/444337\/amir-hossein-baghernezad\">Amir Hossein Baghernezad<\/a> : <a href=\"https:\/\/askubuntu.com\/a\/1051707\">https:\/\/askubuntu.com\/a\/1051707<\/a><\/p>\n\n\n\n<p>Short version: This (ubuntu based) OS uses an old synaptics driver.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install xserver-xorg-input-synaptics<\/code><\/pre>\n\n\n\n<p>Now we need to add or edit the ScrollDelta values in the config file. I need 200 and it&#8217;s still not sluggish.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/usr\/share\/X11\/xorg.conf.d\nsudo nano 70-synaptics.conf<\/code><\/pre>\n\n\n\n<p>How it should look:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Section \"InputClass\"\n        Identifier \"touchpad catchall\"\n        Driver \"synaptics\"\n        MatchIsTouchpad \"on\"\n        Option \"VertScrollDelta\"  \"200\"\n        Option \"HorizScrollDelta\" \"200\"\n# This option is recommend on all Linux systems using evdev, but cannot be\n# enabled by default. See the following link for details:\n# http:\/\/who-t.blogspot.com\/2010\/11\/how-to-ignore-configuration-errors.html\n      MatchDevicePath \"\/dev\/input\/event*\"\nEndSection\n<\/code><\/pre>\n\n\n\n<p>Save the file and close nano (CTRL+O, Enter, CTRL+X), Log the user out and back in to feel the changes.<\/p>\n\n\n\n<p>It&#8217;s possible to invert the scroll (natural scroll?) with a negativ value, like &#8222;-200&#8220;.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Speed in Firefox<\/h2>\n\n\n\n<p>Open a new tab in Firefox, and enter into the address bar: <code>about:config<\/code>.<\/p>\n\n\n\n<p>There may be a warning about the sensitivity of the advanced settings within, accept the risk and proceed. There will be a search bar at the top, search for:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mousewheel.default.delta_multiplier_y<\/code><\/pre>\n\n\n\n<p>The default value seems to be <code>100<\/code>. Change it to something like <code>50<\/code>, and save with the check mark on the right.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are two solutions. The first one just needs some terminal magic, for the other one you need to change a conf. Note from the future: Maybe xinput doesn&#8217;t exist anymore the next time you have a problem. Try this instead: https:\/\/askubuntu.com\/questions\/1413750\/how-to-change-2-finger-touchpad-scroll-speed-on-ubuntu-22-04 Terminal Magic xserve \/ xorg So I messed around with Linux on my &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.crazy-memorys.ch\/IfixedIT\/?p=387\" class=\"more-link\"><span class=\"screen-reader-text\">\u201eSynaptic Touchpad Scroll Speed on Linux\u201c<\/span> weiterlesen<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[101,105,102,103],"class_list":["post-387","post","type-post","status-publish","format-standard","hentry","category-allgemein","tag-linux","tag-scrollspeed","tag-synaptics","tag-touchpad"],"_links":{"self":[{"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/posts\/387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=387"}],"version-history":[{"count":6,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/posts\/387\/revisions"}],"predecessor-version":[{"id":519,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=\/wp\/v2\/posts\/387\/revisions\/519"}],"wp:attachment":[{"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.crazy-memorys.ch\/IfixedIT\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}