mirror of https://github.com/Chizi123/Scripts.git
wrote autoclicker
autoclick.sh New file @@ -0,0 +1,12 @@ #!/bin/sh if [ "$(pgrep autoclick | wc -l)" = "2" ]; then true else pkill autoclick fi while :; do xdotool click --delay 100 --repeat 10 1 done