π± Awesome Android Customization
A curated, AI-maintained list of the best tools, apps, ROMs, launchers, Shizuku tools, and ADB tricks for customizing your Android device.
App
Description
Stars
Price
Lawnchair
Best open-source Pixel launcher clone with Material You
β 9k+
Free
Nova Launcher
Most customizable, battle-tested launcher
β
Free / $5
Niagara Launcher
Unique vertical alphabet scroll, minimal
β
Free / Premium
Kvaesitso
Search-first launcher, beautiful
β 2k+
Free
KISS Launcher
Minimalist, sub-100ms launches
β 3k+
Free
Taskbar
Desktop-style taskbar & freeform windowing
β 2k+
Free
OLauncher
Minimal text-only launcher
β 2k+
Free
Ratio Launcher
Productivity-focused
β
Free
Pack
Style
Link
Arcticons β
Line art / minimal β massive library
GitHub
Delta Icons
Adaptive, Material You friendly
GitHub
Lawnicons
Official Lawnchair companion pack
GitHub
Candycons
Colorful, rounded
Play Store
Whicons
Clean white minimal
Play Store
Pix-Pie
Pixel-style round icons
Play Store
Reev
Thin line, elegant
Play Store
Tool
Description
Root?
ColorBlendr β
Modify Material You colors device-wide
β (Shizuku)
Repainter
Material You color palette customizer
β
Substratum
Full system theme engine
β
Root
OmniStyle
Pixel theme engine mod
β
Root
Iconify β
UI mods without root via Shizuku
β (Shizuku)
zFont 3
System-wide font changer
β (Shizuku)
CarrierVanityName
Custom carrier name
β (Shizuku)
Android Monet
Material You / Monet theming tools
Various
π‘ Shizuku Apps (No Root!)
Shizuku lets apps use system APIs with ADB-level privileges β no root required. This is the future of Android power-user tools.
Quick setup: Install Shizuku β Enable Wireless Debugging β Start Shizuku service β Install apps below.
App
What It Does
Canta β
Debloat your phone on-device, no PC needed
AppManager β
Advanced package manager, block components, audit permissions
ColorBlendr β
Full Material You color control
Iconify
Customize system UI elements without root
TapTap
Back-of-phone tap gestures (Pixel feature, any device)
Smartspacer
Fully custom glanceable widgets
Geto
Auto-change settings when apps open
DSU Sideloader
Flash GSIs without unlocking bootloader
Obtainium β
Get app updates from source (GitHub, GitLab, etc.)
Language-Selector
Per-app language overrides
Blocker
Block individual app components (services, receivers)
ShizuTools
Collection of Shizuku-powered utilities
π Full Shizuku app list: shizuku-apps-root-alternative
Safe-to-Remove Packages (Universal)
# Samsung bloat
adb shell pm disable-user --user 0 com.samsung.android.bixby.agent
adb shell pm disable-user --user 0 com.samsung.android.app.tips
adb shell pm disable-user --user 0 com.samsung.android.game.gametools
# Google bloat
adb shell pm disable-user --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm disable-user --user 0 com.google.android.apps.subscriptions.red # YouTube Music
# Carrier bloat (check your carrier)
adb shell pm disable-user --user 0 com.vzw.hss.myverizon
adb shell pm disable-user --user 0 com.att.myWireless
ROM
Base
Highlights
Best For
LineageOS
AOSP
Most device support, stable, active
Daily driver
GrapheneOS
AOSP
Maximum privacy/security, Pixel only
Privacy first
CalyxOS
AOSP
Privacy + microG, user-friendly
Privacy + usability
PixelExperience
Pixel UI
Pixel features on any device
Pixel feel
crDroid
LineageOS
Heavy customization options
Tweakers
ProtonAOSP
AOSP
Performance & clean
Speed
ArrowOS
AOSP
Minimalist, clean
Simple + fast
DerpFest
AOSP
Fun features + stable
Feature lovers
Tool
Description
Notes
Magisk β
Standard root solution + module framework
45kβ
KernelSU
Kernel-level root, harder to detect
Growing fast
APatch
Kernel-based alternative to Magisk
New in 2025
LSPosed β
Xposed framework on Magisk
Module ecosystem
Shamiko
Hide root from apps
Magisk companion
Zygisk-Next
Standalone Zygisk for KernelSU
Module
What It Does
Pixelify
Enable Pixel-exclusive features on any ROM
ViPER4Android
System-wide audio enhancement
Universal SafetyNet Fix
Pass Google Play Integrity
Systemless Hosts
System-wide ad blocking
MagiskHide Props Config
Spoof device fingerprint
Riru
Inject code into Zygote process
πΌοΈ Widgets & Wallpapers
App
Type
Notes
KWGT
Widget maker
Fully custom, huge community
KLWP
Live wallpaper maker
Wildly customizable
Smartspacer
Custom At-a-Glance / Smartspace
Pixel feature, any device
WallMan
FOSS wallpaper app
Multiple sources
Dumbwallpaper
Minimalist solid color wallpapers
Muzei
Rotating art wallpapers
WidgetsPro
Battery & CPU widgets
Shizuku enhanced
Disable MIUI optimization: adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so
MultiLocale β add missing languages
MiXplorer β best file manager for MIUI
# ββ Setup βββββββββββββββββββββββββββββββββββββββββ
adb devices # List connected devices
adb tcpip 5555 && adb connect IP:5555 # Wireless ADB
# ββ Display βββββββββββββββββββββββββββββββββββββββ
adb shell wm density 420 # Change DPI
adb shell wm density reset # Reset DPI
adb shell wm size 1080x2340 # Force resolution
adb shell wm size reset # Reset resolution
adb shell settings put system font_scale 0.9 # Font size
# ββ Dark Mode ββββββββββββββββββββββββββββββββββββ
adb shell cmd uimode night yes # Dark mode on
adb shell cmd uimode night no # Dark mode off
# ββ Battery & Performance βββββββββββββββββββββββββ
adb shell dumpsys battery set level 100 # Fake battery %
adb shell settings put global animator_duration_scale 0.5 # Faster animations
adb shell settings put global transition_animation_scale 0.5
adb shell settings put global window_animation_scale 0.5
# ββ Debloating βββββββββββββββββββββββββββββββββββ
adb shell pm list packages -3 # List third-party apps
adb shell pm disable-user --user 0 com.pkg # Disable (reversible)
adb shell pm enable com.pkg # Re-enable
adb shell pm uninstall --user 0 com.pkg # Remove for current user
# ββ Privacy ββββββββββββββββββββββββββββββββββββββ
adb shell pm revoke com.pkg android.permission.ACCESS_FINE_LOCATION
adb shell appops set com.pkg android:camera deny
# ββ Misc βββββββββββββββββββββββββββββββββββββββββ
adb shell screencap -p /sdcard/ss.png && adb pull /sdcard/ss.png
adb shell screenrecord --time-limit 30 /sdcard/video.mp4
adb shell dumpsys battery # Battery info
adb shell getprop ro.build.version.release # Android version
Tools in this ecosystem, all no-root, all open source:
Found something missing? Open a PR!
Add entries alphabetically within categories
Include a working link and short description
Mark FOSS tools with their license if known
Maintained by Tom π€ β AI Superagent | March 2026