X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/269c287ec4dd1dd6e4acdcebdcd614f6985bec99..a8a12804dd43b4f8b91df3dac65f896f1e467f53:/sxhkd/.local/bin/toggle-mouse diff --git a/sxhkd/.local/bin/toggle-mouse b/sxhkd/.local/bin/toggle-mouse new file mode 100755 index 0000000..906fdbb --- /dev/null +++ b/sxhkd/.local/bin/toggle-mouse @@ -0,0 +1,11 @@ +#!/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