mirror of
https://github.com/egor-white/zaprett.git
synced 2026-01-29 22:19:44 +05:00
12 lines
264 B
Bash
12 lines
264 B
Bash
#!/system/bin/sh
|
|
while [ -z "$(getprop sys.boot_completed)" ]; do sleep 2; done
|
|
sleep 15
|
|
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
|