dashboard
repositories
filestore
activity
search
login
main
/
Scripts
mirror of
https://github.com/Chizi123/Scripts.git
summary
commits
tree
docs
forks
compare
view
|
history
|
commit
|
commitdiff
Updated to excludes file
Joel Grunbaum
2021-08-24
d6e801a44971f9e6ee6d1282b3ae0912e0033ba3
[Scripts.git]
/
autoclick.sh
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