Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
zgfg authored Feb 2, 2022
1 parent 1b55792 commit 22d13b1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083

### Links [Source]
https://github.com/Magisk-Modules-Alt-Repo/SystemlessDebloater
https://github.com/zgfg/SystemlessDebloater

### Description
Select and systemlessly debloat preinstalled system apps. Supporting up to System As Root (SAR), Dynamic partitions and Android 12. Module must be installed through Magisk app, not TWRP - please read OP instructions in the XDA thread:
https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083

My repo (old):
My repo:

![GitHub release (latest by date)](https://img.shields.io/github/v/release/zgfg/SystemlessDebloater?label=Release&style=plastic) ![GitHub Release Date](https://img.shields.io/github/release-date/zgfg/SystemlessDebloater?label=Release%20Date&style=plastic)
![GitHub Releases](https://img.shields.io/github/downloads/zgfg/SystemlessDebloater/latest/total?label=Downloads%20%28Latest%20Release%29&style=plastic)
![GitHub All Releases](https://img.shields.io/github/downloads/zgfg/SystemlessDebloater/total?label=Total%20Downloads%20%28All%20Releases%29&style=plastic)

Alt-Repo (new):
Alt-Repo:

![GitHub release (latest by date)](https://img.shields.io/github/v/release/Magisk-Modules-Alt-Repo/SystemlessDebloater?label=Release&style=plastic) ![GitHub Release Date](https://img.shields.io/github/release-date/Magisk-Modules-Alt-Repo/SystemlessDebloater?label=Release%20Date&style=plastic)
![GitHub Releases](https://img.shields.io/github/downloads/Magisk-Modules-Alt-Repo/SystemlessDebloater/latest/total?label=Downloads%20%28Latest%20Release%29&style=plastic)
Expand Down
8 changes: 7 additions & 1 deletion customize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Installation script customize.sh for Magisk Module Systemless Debloater (REPLACE).
# XDA thread: https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083
# GitHub source: https://github.com/zgfg/SystemlessDebloater
# Module debloates /system, /system_ext, /product, /vendor and /india apps by searching (at the time of module installation) and listing their paths to the Magisk Module Installer REPLACE variable.
# Magisk then creates local system tree that will be (systemlessly) overlaid into the /system at every (re)boot.
# It can be used for any Android - just add/remove your unwanted stock app names to /Download/SystemlessDebloaterList.sh script on Internal memory, (re)install the module and reboot.
Expand All @@ -19,7 +20,7 @@ MyFolder=/storage/emulated/0/Download
# MyFolder=/sdcard/Download

# Module's version
MyVersion=v1.4.6
MyVersion=v1.4.7

# Log file
LogFile=$MyFolder/SystemlessDebloater.log
Expand All @@ -45,6 +46,11 @@ if [ ! -z "$Prop" ] && [ "$Prop" ]
then
LogLine=$LogLine' A/B'
fi
Prop=$(getprop ro.boot.slot_suffix)
if [ ! -z "$Prop" ] && [ "$Prop" ]
then
LogLine=$LogLine" ($Prop)"
fi
echo "$LogLine"
echo "$LogLine" >> $LogFile
LogLine=$(magisk -c)
Expand Down
6 changes: 3 additions & 3 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
id=SystemlessDebloater
name=Systemless Debloater (REPLACE)
version=1.4.6
versionCode=146
version=1.4.7
versionCode=147
author=zgfg @ xda
support=https://forum.xda-developers.com/mi-9t/how-to/magisk-module-systemless-debloater-t4180083
updateJson=https://raw.githubusercontent.com/Magisk-Modules-Alt-Repo/SystemlessDebloater/main/update.json
updateJson=https://raw.githubusercontent.com/zgfg/SystemlessDebloater/main/update.json
description=Select and debloat preinstalled system apps. Supported up to SAR, Dynamic partitions and A12. Module must be installed through Magisk app, not TWRP - see OP instructions in the XDA thread.

0 comments on commit 22d13b1

Please sign in to comment.