localwrappedmusicstatus-com.../magiskmodule/service.sh

22 lines
298 B
Bash
Raw Permalink Normal View History

2024-12-18 17:34:07 -05:00
# Schedule task
nohup /bin/sh > /dev/null 2>&1 <<EOF &
wait_boot_complete()
{
until [ "x\$(getprop sys.boot_completed)" == "x1" ]
do
sleep 5
done
}
wait_boot_complete
while true
do
env MSSERVER="url" /system/bin/musiccombo >> /data/local/tmp/musiccombo.log 2>&1
sleep 5
done
EOF