{"id":2024,"date":"2022-05-05T19:54:19","date_gmt":"2022-05-05T14:24:19","guid":{"rendered":"https:\/\/smarttech101.com\/?p=2024"},"modified":"2022-06-24T20:49:07","modified_gmt":"2022-06-24T15:19:07","slug":"libinput-fix-your-linux-touchpad-using-libinput","status":"publish","type":"post","link":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/","title":{"rendered":"libinput: Fix your Linux touchpad using libinput"},"content":{"rendered":"\n<p>libinput is a modern touchpad driver in Linux. Synaptics-based drivers are not being upgraded to include modern laptops. This article is all about the installation, and configuration of libinput. Here, I will talk about how to set up one, two, and three finger gestures, natural scroll, and scrolling acceleration among other things.<\/p>\n\n\n\n<p><strong>Note: <\/strong>Please note that this article is about <strong>X<\/strong> based desktop environment, not <strong>Wayland<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Table of contents<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#installation_of_libinput\">Installation of libinput<\/a><\/li><li><a href=\"#conflicts_with_synaptics\">Conflicts with Synaptics<\/a><\/li><li><a href=\"#configuration_of_libinput\">Configuration of libinput<\/a><ul><li><a href=\"#explanation_of_above_libinputs_option\">Explanation of above libinput&#8217;s option<\/a><\/li><li><a href=\"#other_useful_libinput_options\">Other useful libinput options<\/a><\/li><\/ul><\/li><li><a href=\"#conclusion\">Conclusion<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installation_of_libinput\">Installation of libinput<\/h2>\n\n\n\n<p>Debian based distro (Ubuntu, Linux Mint, Mx Linux)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt-get install xserver-xorg-input-libinput<\/code><\/pre>\n\n\n\n<p>Arch Linux based distro (Arch Linux, Manjaro, Arco Linux)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pacman -S xf86-input-libinput<\/code><\/pre>\n\n\n\n<p>Fedora-based distro<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>yum install libinput<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conflicts_with_synaptics\">Conflicts with Synaptics<\/h2>\n\n\n\n<p>libinput conflicts with Synaptics drivers. If both are installed Synaptics will take precedence due to its higher numeric order <code>70-<\/code> in the default installation directory. So either remove Synaptics or give libinput&#8217;s configuration file *.conf file a higher number like <code>100-touchpad.conf<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configuration_of_libinput\">Configuration of libinput<\/h2>\n\n\n\n<p>Create and open the configuration file using your favorite editors:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>~$ vim \/etc\/X11\/xorg.conf.d\/100-touchpad.conf<\/code><\/pre>\n\n\n\n<p>By the way, libinput supports many devices &#8211; keyboard, touchscreen, tablet, touchpad. Here in this file, you need to create a section for each of your devices. Since you are working on your touchpad, the following section for the touchpad needs to be created:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Section \"InputClass\"\n        Identifier \"libinput touchpad catchall\"\n        MatchIsTouchpad \"on\"\n        MatchDevicePath \"\/dev\/input\/event*\"\n        Driver \"libinput\"\nEndSection<\/code><\/pre>\n\n\n\n<p>Now you need to set up basic configuration options for gestures etc:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Section \"InputClass\"\n        Identifier \"libinput touchpad catchall\"\n        MatchIsTouchpad \"on\"\n        MatchDevicePath \"\/dev\/input\/event*\"\n        Driver \"libinput\"\n    Option \"Tapping\" \"on\"\n    Option \"NaturalScrolling\" \"true\"\n    Option \"ClickMethod\" \"clickfinger\"\n    Option \"TappingButtonMap\" \"lrm\"\n    Option \"AccelSpeed\" \"0.5\"\n    Option \"DisableWhileTyping\" \"true\"\nEndSection<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"explanation_of_above_libinputs_option\">Explanation of above libinput&#8217;s option<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><code>Option \"Tapping\" \"on\"<\/code>: single tap means a single left click<\/li><li>Option &#8220;NaturalScrolling&#8221; &#8220;true&#8221;: natural (reverse) scrolling<\/li><li>Option &#8220;ClickMethod&#8221; &#8220;clickfinger&#8221;: two-finger click is a context-click (right-click) and a three-finger click is a middle click<\/li><li>Option &#8220;TappingButtonMap&#8221; &#8220;lmr&#8221;: 1 finger means left mouse button, 2 fingers means middle and 3 fingers mean right-click. <\/li><li>Option &#8220;TappingButtonMap&#8221; &#8220;lrm&#8221;: 1 finger means left mouse button, 2 fingers means right and 3 fingers mean middle click.<\/li><li>Option &#8220;AccelSpeed&#8221; &#8220;0.5&#8221;: It is about your pointer&#8217;s acceleration. It is a floating number with range [-1,1]<\/li><li>Option &#8220;DisableWhileTyping&#8221; &#8220;true&#8221;: touchpad disabled while typing; however <a href=\"https:\/\/smarttech101.com\/xmodmap-remap-any-key-using-xmodmap\/#modifier_keys\" target=\"_blank\" rel=\"noreferrer noopener\">modifier keys<\/a> such as Super, and Alt still work.<\/li><\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"other_useful_libinput_options\">Other useful libinput options<\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li><code>Option \"LeftHanded\" \"bool\"<\/code>: for left-handed people; it interchanges left and right buttons.<\/li><li><code>Option \"MiddleEmulation\" \"bool\"<\/code>: if <code>bool<\/code> is set to <code>true<\/code>, pressing both left and right buttons presses the middle button.<\/li><\/ul>\n\n\n\n<p><strong>Note: <\/strong>After any changes to the said file<strong> restart the x-org server. <\/strong>If you use display managers such as lightdm and sddm, use the following command for restarting the x-org server:<\/p>\n\n\n\n<p>For sddm:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>~$ sudo systemctl restart sddm.service<\/code><\/pre>\n\n\n\n<p>For lightdm:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>~$ sudo systemctl restart lightdm.service<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>That&#8217;s all folks. This was all about the basic configuration of the touchpad. Look at the man page to further configure it or if you want to configure your tablet etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article is all libinput &#8211; one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.<\/p>\n","protected":false},"author":2,"featured_media":2025,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[17],"tags":[18],"class_list":["post-2024","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-command-line-tools","tag-command-line-tools"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>libinput: Fix your Linux touchpad using libinput | SmartTech101<\/title>\n<meta name=\"description\" content=\"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"libinput: Fix your Linux touchpad using libinput | SmartTech101\" \/>\n<meta property=\"og:description\" content=\"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\" \/>\n<meta property=\"og:site_name\" content=\"SmartTech101\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-05T14:24:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-24T15:19:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ajay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ajay_yadav\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ajay\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\"},\"author\":{\"name\":\"Ajay\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334\"},\"headline\":\"libinput: Fix your Linux touchpad using libinput\",\"datePublished\":\"2022-05-05T14:24:19+00:00\",\"dateModified\":\"2022-06-24T15:19:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\"},\"wordCount\":426,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\"},\"image\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1\",\"keywords\":[\"Command Line Tools\"],\"articleSection\":[\"Command Line Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\",\"url\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\",\"name\":\"libinput: Fix your Linux touchpad using libinput | SmartTech101\",\"isPartOf\":{\"@id\":\"https:\/\/smarttech101.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1\",\"datePublished\":\"2022-05-05T14:24:19+00:00\",\"dateModified\":\"2022-06-24T15:19:07+00:00\",\"description\":\"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.\",\"breadcrumb\":{\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1\",\"width\":1280,\"height\":720,\"caption\":\"libinput: Fix your Linux touchpad using libinput\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smarttech101.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"libinput: Fix your Linux touchpad using libinput\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/smarttech101.com\/#website\",\"url\":\"https:\/\/smarttech101.com\/\",\"name\":\"SmartTech101\",\"description\":\"Do Everything in Linux\",\"publisher\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/smarttech101.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\",\"name\":\"Ajay Yadav\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1\",\"width\":180,\"height\":60,\"caption\":\"Ajay Yadav\"},\"logo\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334\",\"name\":\"Ajay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g\",\"caption\":\"Ajay\"},\"sameAs\":[\"https:\/\/x.com\/ajay_yadav\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"libinput: Fix your Linux touchpad using libinput | SmartTech101","description":"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/","og_locale":"en_US","og_type":"article","og_title":"libinput: Fix your Linux touchpad using libinput | SmartTech101","og_description":"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.","og_url":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/","og_site_name":"SmartTech101","article_published_time":"2022-05-05T14:24:19+00:00","article_modified_time":"2022-06-24T15:19:07+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg","type":"image\/jpeg"}],"author":"Ajay","twitter_card":"summary_large_image","twitter_creator":"@ajay_yadav","twitter_misc":{"Written by":"Ajay","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#article","isPartOf":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/"},"author":{"name":"Ajay","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334"},"headline":"libinput: Fix your Linux touchpad using libinput","datePublished":"2022-05-05T14:24:19+00:00","dateModified":"2022-06-24T15:19:07+00:00","mainEntityOfPage":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/"},"wordCount":426,"commentCount":5,"publisher":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633"},"image":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1","keywords":["Command Line Tools"],"articleSection":["Command Line Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/","url":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/","name":"libinput: Fix your Linux touchpad using libinput | SmartTech101","isPartOf":{"@id":"https:\/\/smarttech101.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage"},"image":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1","datePublished":"2022-05-05T14:24:19+00:00","dateModified":"2022-06-24T15:19:07+00:00","description":"This article is all libinput - one, two, and three-finger gestures, natural scroll, and scrolling acceleration among other things.","breadcrumb":{"@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#primaryimage","url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1","contentUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1","width":1280,"height":720,"caption":"libinput: Fix your Linux touchpad using libinput"},{"@type":"BreadcrumbList","@id":"https:\/\/smarttech101.com\/libinput-fix-your-linux-touchpad-using-libinput\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smarttech101.com\/"},{"@type":"ListItem","position":2,"name":"libinput: Fix your Linux touchpad using libinput"}]},{"@type":"WebSite","@id":"https:\/\/smarttech101.com\/#website","url":"https:\/\/smarttech101.com\/","name":"SmartTech101","description":"Do Everything in Linux","publisher":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/smarttech101.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633","name":"Ajay Yadav","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/","url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1","contentUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1","width":180,"height":60,"caption":"Ajay Yadav"},"logo":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334","name":"Ajay","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g","caption":"Ajay"},"sameAs":["https:\/\/x.com\/ajay_yadav"]}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/05\/libinput-Fix-your-Linux-touchpad-using-libinput.jpg?fit=1280%2C720&ssl=1","_links":{"self":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/2024"}],"collection":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/comments?post=2024"}],"version-history":[{"count":5,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/2024\/revisions"}],"predecessor-version":[{"id":2202,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/2024\/revisions\/2202"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/media\/2025"}],"wp:attachment":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/media?parent=2024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/categories?post=2024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/tags?post=2024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}