bonfire/bin/autoclicker

9 lines
117 B
Plaintext
Raw Normal View History

2023-06-06 23:18:09 +05:00
#!/usr/bin/env bash
while true; do
xdotool mousedown 1
sleep 0.01
xdotool mouseup 1
sleep 0.01
done