Last active
July 2, 2022 16:48
-
-
Save MrCarb0n/c934d3597b65a54c39cc85c5814cd2bd to your computer and use it in GitHub Desktop.
This file contains 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
# kill Google font | |
# Attempt #2 | |
su -c '{ | |
PM=$(which pm) | |
GMSF="com.google.android.gms/com.google.android.gms.fonts" | |
for i in $(ls /data/user); do | |
$PM disable --user $i "$GMSF.update.UpdateSchedulerService" | |
$PM disable --user $i "$GMSF.provider.FontsProvider" | |
done | |
}' 2> /dev/null | |
# Attempt #1 | |
su -c '{ | |
BB=/data/adb/magisk/busybox | |
GFP=/data/data/com.google.android.gms/files/fonts/opentype | |
[ -d $GFP ] && { | |
$BB chgrp -R 9999 $GFP | |
$BB chown -R 9999 $GFP | |
$BB chmod -R 0000 $GFP | |
} | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment