mirror of
https://github.com/egor-white/zaprett.git
synced 2025-12-30 23:29:47 +05:00
10 lines
234 B
Bash
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
|