This commit is contained in:
2025-11-23 00:27:02 +02:00
parent 5dab98c7b9
commit c70ad02033
8 changed files with 356 additions and 8 deletions

12
autoclicker-stop.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Script to stop the autoclicker
STATE_FILE="/tmp/autoclicker_running"
if [ -f "$STATE_FILE" ]; then
rm -f "$STATE_FILE"
echo "Autoclicker stop signal sent!"
else
echo "Autoclicker is not running."
fi