Personal ROM patches, tweaks & modifications by titiansxd
This repo contains my personal modifications applied on top of AOSP/LineageOS source.
These are small but meaningful changes — UI tweaks, performance improvements, feature additions and bug fixes.
| # | Mod | Type | Status |
|---|---|---|---|
| 1 | Always-on Display toggle | Feature | ✅ Done |
| 2 | Custom statusbar clock position | UI | ✅ Done |
| 3 | Battery percentage in statusbar | UI | ✅ Done |
| 4 | Disable phantom process killer | Performance | ✅ Done |
| 5 | Increase touch sensitivity | Hardware | ✅ Done |
| 6 | Custom quick settings tiles | UI | 🔧 WIP |
rom-mods/
├── patches/
│ ├── frameworks_base/ # Core Android framework patches
│ ├── packages_apps_Settings/ # Settings app patches
│ └── vendor_lineage/ # Vendor-specific patches
├── props/
│ └── custom.prop # Custom system properties
├── scripts/
│ └── apply-patches.sh # Auto-apply all patches
└── README.md
cd <source_dir>
git am ../patches/frameworks_base/0001-your-patch.patchchmod +x scripts/apply-patches.sh
./scripts/apply-patches.sh /path/to/rom/sourceThese go in your device.mk or system.prop:
# Performance
ro.config.avoid_gfx_accel=false
persist.sys.purgeable_assets=1
# UI
ro.build.version.codename=titiansxd
persist.sys.timezone=Asia/Kolkata
# Battery
ro.mot.eri.losalert.delay=1000
pm.sleep_mode=1- These patches are tested on AOSP Android 13/14
- Always create a backup before applying
- Some patches may need manual conflict resolution depending on ROM source version
- AOSP Team
- LineageOS Team
- All the amazing devs in the Android community
Apache 2.0 — Free to use, modify and share.