Files
zaprett/service.sh
egor-white 1d59e6ae9a inital
2025-06-14 11:08:41 +03:00

12 lines
263 B
Bash

#!/system/bin/sh
while [ -z "$(getprop sys.boot_completed)" ]; do sleep 2; done
sleep 1
source /storage/emulated/0/zaprett/config
if [ "$autorestart" = "true" ]; then
su -c "zaprett start"
while true; do
sleep 3600
su -c "zaprett restart"
done
fi