Skip to content
zgfg edited this page Mar 1, 2023 · 4 revisions

User configuration file for Systemless Debloater Magisk Module

The configuration (config) file is just a list of the app(s) you want to keep from running on boot.
This list will be imported when the module is installed.

File location and name.

Your configuration file needs to be in located in the Download directory on the device.
Normally /sdcard/Download/

Your configuration file needs to be named

  • SystemlessDebloater.cfg

Note:

The original configuration file format has been depreciated.
If you are still using the original configuration file.
See SystemlessDebloaterList for more information.


Define a list of stock apps for debloating:

This needs to be the actual file name of the system app.
The names are style and case-sensitive.
It must match the actual file name.

Example:
Google Chrome stub
Correct : Chrome-Stub
Incorrect : ChromeStub
Incorrect : chrome-stub

YouTube
Correct : YouTube
Incorrect : YOUTUBE
Incorrect : youtube

A stub file is a placeholder app.
A reduced version of the app so the full version can be downloaded.
When a stub app is installed as system app, the full version will be treated as a system app.

File format:
  • The file name of the app.
  • One name per line.

Example:
Remove Calculator, Chrome, Google QuickSearch, YouTube and YT Music.

Calculator
CalculatorGooglePrebuilt
Chrome
Chrome-Stub
ExactCalculator
Velvet
YouTube
YouTubeMusicPrebuilt

The imported list would be identical to this config file.


You can add comments (notes) to the config file.
Comments are marked by the # symbol.
Comments will not be imported.

Example:
Remove Calculator, Chrome, YouTube and YT Music.
Google QuickSearch (Velvet) will not be imported since it is marked as a comment.

## User configuration file for Systemless Debloater Magisk Module
## Copyright (c) zgfg @ xda-developers.

Calculator
CalculatorGooglePrebuilt
Chrome
Chrome-Stub
ExactCalculator
# Velvet
YouTube
YouTubeMusicPrebuilt

The imported list will be:

Calculator
CalculatorGooglePrebuilt
Chrome
Chrome-Stub
ExactCalculator
YouTube
YouTubeMusicPrebuilt

Example:
Remove Calculator, Chrome, YouTube and YT Music.
Google QuickSearch (Velvet) will not be imported since it is marked as a comment.

## User configuration file for Systemless Debloater Magisk Module
## Copyright (c) zgfg @ xda-developers.

## List of stock apps for debloating:

Calculator
CalculatorGooglePrebuilt        # Google Calculator
Chrome                          # Chrome Browser
Chrome-Stub                     # Chrome Browser
ExactCalculator                 # LineageOS Calculator
# Velvet                          # Google Quick Search
YouTube                         # Google YouTube
YouTubeMusicPrebuilt            # Google YouTube Music

The imported list will be:

Calculator
CalculatorGooglePrebuilt
Chrome
Chrome-Stub
ExactCalculator
YouTube
YouTubeMusicPrebuilt

Systemless Debloater Magisk Module. Copyright (c) zgfg @ xda-developers.