Created
March 3, 2017 19:22
-
-
Save TwizzyIndy/843ec5d9c75dc51996d0cdce2c77a236 to your computer and use it in GitHub Desktop.
NotoSansKiller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/system/bin/sh | |
#author : TwizzyIndy | |
#created on : 11/2016 | |
su -c busybox mount -o remount,rw /system | |
cd /system/fonts | |
for font in NotoSansMyanmar* | |
do | |
fontName=`echo $font|cut -f 1 -d '.'` | |
echo "Backuping " $fontName ".." | |
cp $font $fontName.bak | |
echo "Replacing " $fontName ".." | |
dd if=/data/local/tmp/zg.ttf of=$font | |
echo "Changing permission .." | |
chmod 644 $font | |
done | |
echo Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment