summaryrefslogtreecommitdiff
path: root/tsoff
diff options
context:
space:
mode:
Diffstat (limited to 'tsoff')
-rwxr-xr-xtsoff13
1 files changed, 13 insertions, 0 deletions
diff --git a/tsoff b/tsoff
new file mode 100755
index 0000000..bf9291d
--- /dev/null
+++ b/tsoff
@@ -0,0 +1,13 @@
+#!/sbin/sh
+
+if [ -n "$XDG_CONFIG_HOME" ]; then
+ CONPATH="$XDG_CONFIG_HOME"
+elif [ -d "$HOME/.config/" ]; then
+ CONPATH="$HOME/.config"
+else
+ CONPATH="$HOME"
+fi
+
+TSNAME="$(crcparse 'tsname')"
+
+xinput disable "$(xinput list | grep "$TSNAME" | grep 'pointer' | sed 's/\s/\n/g' | grep id | sed 's/^id=//')"