add idler

This commit is contained in:
2026-05-03 20:56:03 -07:00
parent 99eb2e2e43
commit 2bc19afb5c

9
scripts/idler Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
while true; do
xdotool keydown w
sleep 4
xdotool keyup w
xdotool keydown s
sleep 4
xdotool keyup s
done