From fcf8d0c0246b353f255eb5173cd8cd3748f8da3b Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Thu, 1 Jan 1970 03:00:00 +0300 Subject: chore: init --- toggle-touchpad | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 toggle-touchpad (limited to 'toggle-touchpad') diff --git a/toggle-touchpad b/toggle-touchpad new file mode 100755 index 0000000..2ef7d1f --- /dev/null +++ b/toggle-touchpad @@ -0,0 +1,10 @@ +#!/bin/sh + +device="$(xinput list | grep -Eo 'TouchPad\s*id\=[0-9]{1,2}' | grep -Eo '[0-9]{1,2}')" +state="$(xinput list-props "${device}" | awk '/Device Enabled/ {print $4}')" + +if [ "${state}" -eq 1 ]; then + xinput disable "${device}" +else + xinput enable "${device}" +fi -- cgit 1.4.1