summaryrefslogtreecommitdiffstats
path: root/sxhkd/.local/bin/toggle-mouse
diff options
context:
space:
mode:
Diffstat (limited to 'sxhkd/.local/bin/toggle-mouse')
-rwxr-xr-xsxhkd/.local/bin/toggle-mouse11
1 files changed, 0 insertions, 11 deletions
diff --git a/sxhkd/.local/bin/toggle-mouse b/sxhkd/.local/bin/toggle-mouse
deleted file mode 100755
index 906fdbb..0000000
--- a/sxhkd/.local/bin/toggle-mouse
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-touchpad_off="$(synclient -l | grep TouchpadOff | cut -d'=' -f 2 | xargs)"
-
-if [ "$touchpad_off" = "0" ]; then
- synclient TouchpadOff=1
- unclutter -idle 1 &
-else
- synclient TouchpadOff=0
- killall unclutter
-fi