diff options
Diffstat (limited to '.scripts/toggle-touchpad-hypr')
-rwxr-xr-x | .scripts/toggle-touchpad-hypr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.scripts/toggle-touchpad-hypr b/.scripts/toggle-touchpad-hypr new file mode 100755 index 0000000..8f65419 --- /dev/null +++ b/.scripts/toggle-touchpad-hypr @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +CACHE_FILE="$XDG_CACHE_HOME/laptop-touchpad-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 |