FINAL VERSION - ALL OPTIMIZATIONS + ART SPEED PROFILE - March 2026
Tested & Verified - Bootloop Recovery Documented
Complete Step-by-Step Instructions - No Steps Missed
Last Updated: February 28, 2026
Tested On: Samsung Galaxy Tab A 8.0 (SM-T295)
Final Package Count: 249 (from 312 stock)
Total Reduction: 20.2% (63 packages removed)
| @echo off | |
| REM ========================================================== | |
| REM Title: Toggle Network Adapter IP Between Static and Automatic | |
| REM Description: | |
| REM This batch script toggles the IP configuration of a specified | |
| REM network adapter between a static IP and automatic (DHCP) | |
| REM configuration. It is designed for use with TP-Link router | |
| REM recovery mode. The script assigns a static IP address when | |
| REM DHCP is enabled, and reverts to automatic IP configuration | |
| REM if a static IP is already set. |
| #!/bin/sh | |
| # ───────────────────────────────────────────── | |
| # Android App Permissions Batch Fixer | |
| # Repository: gist.github.com/MrCarb0n | |
| # Author: @MrCarb0n | |
| # ───────────────────────────────────────────── | |
| set -eu | |
| # Colors | |
| GRN="\033[1;32m" | |
| BLU="\033[1;34m" |
| #!/bin/sh | |
| ALIASES="" | |
| PASS="" | |
| VALIDITY=36500 | |
| ISSUED_DATE="yyyy/mm/dd hh:mm:ss" | |
| CommonName="" | |
| OrganizationalUnit="" | |
| Organization="" |
| #!/system/bin/sh | |
| # AOSP Enhancer | |
| # Author: LOOPER (iamlooper @ github) | |
| # Todo: If you do changes in code then make sure to change referring line numbers to code in comments respectively. | |
| ############################### | |
| # Required Tools | |
| ############################### | |
| # $1:filepath $2:value |
| #!/system/bin/sh | |
| # set -x | |
| # detect total RAM | |
| RAM="$(awk -F':' '/MemTotal/{gsub(/ /,"");print int($2/1024)}' /proc/meminfo)" | |
| # aggressive LMK | |
| MATH() { awk "BEGIN{print int($RAM*$1)}"; } | |
| LMK1="$(MATH 5.1200)" | |
| LMK2="$(MATH 7.6800)" |
| # 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" |
| # NotoEmojiPlus OMF Extension | @MrCarb0n | |
| # Don't modify file or filename: 88_NotoEmojiPlus.sh | |
| # Style: Google, Unicode 15 | |
| # Resources: @rkbdiemoji | |
| # Thanks: @nongthaihoang, MFFM! | |
| ${EMOJ:=false} && return |
| #!/system/bin/sh | |
| # Yellow flashlight disabler for RedmiNote4 (mido) | |
| # Author: Tiash (@MrCarb0n) <MrCarb0n@proton.me> | |
| # Gist: https://gist.github.com/1f3be90056ff8c238fc15ba8acb13f0a | |
| F=/data/adb/service.d/YellowFlashDisabler.sh | |
| echo "#!/system/bin/sh | |
| # Yellow flashlight disabler for RedmiNote4 (mido) | |
| # Author: Tiash (@MrCarb0n) <MrCarb0n@proton.me> |