From 08256951321be647ef91bbde19966e990789014f Mon Sep 17 00:00:00 2001 From: siinus Date: Mon, 16 Nov 2020 01:23:27 +0200 Subject: [PATCH] Add touchpad disable script --- xinput/touchpad.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 xinput/touchpad.sh diff --git a/xinput/touchpad.sh b/xinput/touchpad.sh new file mode 100755 index 0000000..7a2f1a5 --- /dev/null +++ b/xinput/touchpad.sh @@ -0,0 +1,6 @@ +#!/bin/sh -e + +# Disable touchpad + +xinput --disable `xinput list | awk '/TouchPad/ {print $6}' | tr 'id=' ' ' | xargs` +