Initial commit

This commit is contained in:
Dan 2022-02-07 12:11:43 +00:00 committed by GitHub
commit 4c89bce675
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
97 changed files with 180 additions and 0 deletions

20
launch.sh Normal file
View file

@ -0,0 +1,20 @@
#!/bin/sh
if [ -d /mnt/SDCARD/miyoo ] ; then
./printstr "Emptying existing skins folder"
# Empty the existing skin folder
rm /mnt/SDCARD/miyoo/app/skin/*
./printstr "Copying skin files"
# Copy the skin files into the miyoo app folder
for FILE in ./data/miyoo/*
do
cp -R $FILE /mnt/SDCARD/miyoo/
done
fi
reboot