This commit is contained in:
Zacharias-Brohn
2026-01-19 18:40:28 +01:00
parent 8bd6547af9
commit 567faff34e
85 changed files with 2182 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/zsh
MAX_DELAY=2.7
MIN_DELAY=2.4
for (( i = 1; i <= 1118; i++ )); do
RANGE=$(( MAX_DELAY - MIN_DELAY ))
RAND_MS=$(( RANDOM % ( (RANGE + 1) * 1000 ) ))
SLEEP_TIME=$( awk "BEGIN { printf \"%.3f\", $MIN_DELAY + $RAND_MS/1000 }" )
sleep $SLEEP_TIME
echo 'mouseto 0.612 0.85' | dotoolc
echo 'mouseto 0.611 0.85' | dotoolc
echo 'click left' | dotoolc
sleep 0.1
echo 'click left' | dotoolc
done
pkill java
exit