mirror of https://github.com/Chizi123/Scripts.git

Joel Grunbaum
2020-06-21 cc5c5da0ff1a2aca9f9c3785a90f857d08a27a90
commit | author | age
5d27f5 1 #!/bin/sh
JG 2
3 if [ "$(pgrep autoclick | wc -l)" = "2" ]; then 
4     true
5 else
6     pkill autoclick 
7 fi
8
9 while :; do
10     xdotool click --delay 100 --repeat 10 1
11 done
12