improve structure; move stuff to relevant folders
This commit is contained in:
12
scripts/osrs/autoclicker-stop.sh
Executable file
12
scripts/osrs/autoclicker-stop.sh
Executable 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
|
||||
|
||||
Reference in New Issue
Block a user