Files
zaprett/src/service.sh
2025-10-12 14:10:05 +07:00

10 lines
234 B
Bash

#!/system/bin/sh
while [ -z "$(getprop sys.boot_completed)" ]; do sleep 2; done
su -c "zaprett start"
while true; do
sleep 3600
if [ -f "/data/adb/modules/zaprett/autostart" ]; then
su -c "zaprett restart"
fi
done