OSDN Git Service

instantupdate auto repairs repos
[instantos/instantOS.git] / programs / autoclicker
1 #!/bin/sh
2
3 if ! iconf -i autoclicker; then
4     exit
5 fi
6
7 # toggle on/off
8 if pgrep xdotool; then
9     pkill xdotool
10     exit
11 else
12     xdotool click --delay 75 --repeat 100 1
13 fi