-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
De-bloater: update to latest magisk template
It will now onwards de-bloat only some useless (for me) LOS and OOS apps. Everything related for Samsung Stock TW (kltexxx) are removed here. Signed-off-by: sunilpaulmathew <sunil.kde@gmail.com>
- Loading branch information
1 parent
63485be
commit c18e7ab
Showing
9 changed files
with
249 additions
and
378 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,20 @@ | ||
## System-less De-bloater | ||
#### Version: 2.0 | ||
|
||
### De-bloat a bunch of System Apps Systemless-ly | ||
by <i>sunilpaulmathew@xda-developers.com</i> | ||
|
||
<b>Version</b>: <i>2.1</i> | ||
|
||
### De-bloat the following system apps on Lineage and Oxygen-OS | ||
* /system/app/Duo | ||
* /system/app/Music2 | ||
* /system/app/Photos | ||
* /system/app/Videos | ||
* /system/app/Jelly | ||
* /system/app/crDroidMusic | ||
* /system/app/Email | ||
* /system/priv-app/FlipFlap | ||
* /system/priv-app/Eleven | ||
|
||
### Disclaimer | ||
|
||
<b>This module is made for personal use only.</b> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
#!/system/bin/sh | ||
# Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... | ||
# This will make your scripts compatible even if Magisk change its mount point in the future | ||
# Do NOT assume where your module will be located. | ||
# ALWAYS use $MODDIR if you need to know where this script | ||
# and module is placed. | ||
# This will make sure your module will still work | ||
# if Magisk change its mount point in the future | ||
MODDIR=${0%/*} | ||
|
||
# This script will be executed in post-fs-data mode | ||
# More info in the main Magisk thread |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
#!/system/bin/sh | ||
# Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... | ||
# This will make your scripts compatible even if Magisk change its mount point in the future | ||
# Do NOT assume where your module will be located. | ||
# ALWAYS use $MODDIR if you need to know where this script | ||
# and module is placed. | ||
# This will make sure your module will still work | ||
# if Magisk change its mount point in the future | ||
MODDIR=${0%/*} | ||
|
||
# This script will be executed in late_start service mode | ||
# More info in the main Magisk thread |
Oops, something went wrong.