summaryrefslogtreecommitdiff
path: root/scripts/sTouchpad
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/sTouchpad')
-rwxr-xr-xscripts/sTouchpad15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/sTouchpad b/scripts/sTouchpad
deleted file mode 100755
index 87c0000..0000000
--- a/scripts/sTouchpad
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# Wrapper script for activating and deactivating touchpad
-
-[ -d ~/.cache ] || { mkdir ~/.cache || { echo "Couldn't create ~/.cache " && exit 2; };}
-
-file=~/.cache/touchpad_on
-
-if [ -f $file ];then
- rm $file
- xinput disable "$(xinput list --name-only | grep Touchpad)" && nsend Touchpad Disabled
-else
- touch $file
- xinput enable "$(xinput list --name-only | grep Touchpad)" && nsend Touchpad Enabled
-fi