From 420ceb49b53a8fa9d8ba8443e42e50cd7bd7cea9 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Sun, 12 Jul 2026 11:08:50 +0200 Subject: update --- articles/2025/Touchpad-deactivation.html | 58 ++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 articles/2025/Touchpad-deactivation.html (limited to 'articles/2025/Touchpad-deactivation.html') diff --git a/articles/2025/Touchpad-deactivation.html b/articles/2025/Touchpad-deactivation.html new file mode 100755 index 0000000..2f66a78 --- /dev/null +++ b/articles/2025/Touchpad-deactivation.html @@ -0,0 +1,58 @@ + + + + + + + Touchpad deactivation + + +
+

Bloggings

+ Back + +
+ +
+
+

Touchpad deactivation

+

2025-06-09

+

When you have big hands and a little keyboard

+

Until now I was using synclient TouchpadOff=1 in my .xinitrc, but I was getting odd +results when using the keyboard mouse buttons. It turns out oddly the lower left area of my touchpad was infrequently active +and messing things up.

+

Replacing synclient with xinput set-prop 11 172 0 fixed it.

+

I obtained the touchpad ID with xinput list and the command with xinput -list-props 11

+
+ $ xinput list
+ ⎡ Virtual core pointer                    	id=2	[master pointer  (3)]
+ ⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]
+ ⎜   ↳ Logitech Wireless Mouse                 	id=9	[slave  pointer  (2)]
+ ⎜   ↳ TPPS/2 IBM TrackPoint                   	id=12	[slave  pointer  (2)]
+ ⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]
+     ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]
+     ↳ Power Button                            	id=6	[slave  keyboard (3)]
+     ↳ Video Bus                               	id=7	[slave  keyboard (3)]
+     ↳ Sleep Button                            	id=8	[slave  keyboard (3)]
+     ↳ AT Translated Set 2 keyboard            	id=10	[slave  keyboard (3)]
+     ↳ ThinkPad Extra Buttons                  	id=13	[slave  keyboard (3)]
+     ↳ Logitech Wireless Mouse                 	id=14	[slave  keyboard (3)]
+ ∼ SynPS/2 Synaptics TouchPad              	id=11	[floating slave]
+ 
+$ xinput -list-props 11
+Device 'SynPS/2 Synaptics TouchPad':
+    Device Enabled (172):	1
+    ...
+	
+$ xinput set-prop 11 172 0
+ 
+
+
+ + + -- cgit v1.3.1