Skip to content

Instantly share code, notes, and snippets.

View TwizzyIndy's full-sized avatar
😔

Aung Khant Myo TwizzyIndy

😔
View GitHub Profile
@TwizzyIndy
TwizzyIndy / check_m_m_fonts.sh
Last active August 29, 2015 14:24
This shell script allow you to check which myanmar fonts is installed on the Android device. Push that script on /data/local/tmp and then execute it.
#!/system/bin/sh
if [ -e "/system/fonts/Padauk.ttf" ]
then
touch /data/local/tmp/padauk_exists
fi
if [ -e "/system/fonts/NotoSansMyanmar-Regular.ttf" ]
then
touch /data/local/tmp/noto_regular_exists