Created
July 29, 2013 07:55
-
-
Save misodengaku/6102750 to your computer and use it in GitHub Desktop.
これでいいのかな
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
#!/bin/bash | |
if test $USER = root; then | |
mount -o rw, remount /system | |
cp migu-1c-regular.ttf /system/fonts | |
cp migu-1c-bold.ttf /system/fonts | |
//mv DroidSans.ttf sans_org.ttf | |
//mv DroidSans-Bold.ttf sans_bold_org.ttf | |
rm DroidSans.ttf | |
rm DroidSans-Bold.ttf | |
mv DroidSansFallback.ttf fallback_org.ttf | |
mv DroidSansMono.ttf mono_org.ttf | |
ln -s migu-1c-regular.ttf DroidSans.ttf | |
ln -s migu-1c-regular.ttf DroidSansFallback.ttf | |
ln -s migu-1c-regular.ttf DroidSansMono.ttf | |
ln -s migu-1c-bold.ttf DroidSans-Bold.ttf | |
else | |
echo Operation not permitted. | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment