summaryrefslogtreecommitdiff
path: root/.scripts
diff options
context:
space:
mode:
authorSaumit <justsaumit@protonmail.com>2025-02-23 16:23:16 +0530
committerSaumit <justsaumit@protonmail.com>2025-02-23 16:23:16 +0530
commit71f9a6547a4aa9e759c371e6bac496445c659ef9 (patch)
tree7adf3bcd268cd7b508ef293f194a3cc690d00ee1 /.scripts
parenta9950e07cb2b662fa88b32a9e2e277676446a206 (diff)
hypr: Script to disable touchpad during keybrHEADmain
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/touchpad-disable-hypr11
1 files changed, 11 insertions, 0 deletions
diff --git a/.scripts/touchpad-disable-hypr b/.scripts/touchpad-disable-hypr
new file mode 100755
index 0000000..d6f634c
--- /dev/null
+++ b/.scripts/touchpad-disable-hypr
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+CACHE_FILE="$XDG_CACHE_HOME/laptop-keyboard-disabled"
+
+if [ -f "$CACHE_FILE" ] ;then
+ rm "$CACHE_FILE"
+ hyprctl keyword -r '$TOUCHPAD_ENABLED' "true"
+else
+ touch "$CACHE_FILE"
+ hyprctl keyword -r '$TOUCHPAD_ENABLED' "false"
+fi