XtremeBS (Xtreme Battery Saver)

Maximize your Android device’s battery life with highly configurable power-saving tools.

XtremeBS is a Magisk/KernelSU module designed for rooted Android devices, offering aggressive battery optimization through dynamic, event-driven settings. It allows advanced users to fine-tune CPU cores, apps, WiFi, Doze mode, and more to extend battery life significantly—potentially up to 5x stock uptime. While powerful, it requires careful configuration to avoid lag, missed notifications, or device instability.

[!NOTE] An Android app is in development to simplify configuration and enhance usability. The current web UI (v1.0.6+) will be replaced upon app release.


Features


Supported Root Managers


Disclaimer

XtremeBS is an advanced tool that modifies system behavior and requires root access. Misconfiguration may cause lag, missed notifications, alarms, or SystemUI crashes. Use at your own risk. I is not responsible for damages or data loss. Always back up your config and test settings incrementally.

Tested primarily on a Pixel 5 running ProtonAOSP. Compatibility varies by device and ROM.


Installation

  1. Download the Module:

  2. Install:

    • Flash the module in your root manager (Magisk/KernelSU).
    • Reboot your device.
  3. Configure:

    • A default config file is created at /data/local/tmp/XtremeBS/XtremeBS.conf.
    • Edit the config manually or use the web UI (http://127.0.0.1:8081, launched via action.sh in v1.0.6+).
    • After changes, reload the config with XBSctl reload or reboot.

Configuration

XtremeBS uses a configuration file (/data/local/tmp/XtremeBS/XtremeBS.conf) to control its behavior. It supports two formats:

[!TIP] Set version=2 in the config to enable v2 mode. The module automatically migrates v1 configs to v2 if detected.

v2 uses event blocks to apply settings for specific triggers:

Each block contains settings like disable_cores or handle_apps. Example:

version=2
delay=3
log_file=/sdcard/XtremeBS.log
log_level=3

screen_off={
  disable_cores=cpu6 cpu7
  handle_apps=nice
  allowlist=/data/local/tmp/XtremeBS/apps.allow
}

low_power={
  disable_cores=cpu2 cpu3 cpu4 cpu5
  doze=light
  kill_wifi=true
}

my_event={
  handle_gms=nice
  low_ram=true
}

Rules:

v1 Configuration (Legacy)

v1 uses a single trigger to apply settings globally. Example:

version=1
trigger=auto
delay=3
keep_on_charge=true
handle_cores=auto
disable_cores=false
handle_apps=suspend
allowlist=/data/local/tmp/XtremeBS/apps.allow

[!NOTE] v1 is backward compatible but will be deprecated in future releases. Consider switching to v2 for advanced features.

Config Options

OptionDescriptionValuesDefaultNotes
versionConfig format1, 22Set to 2 for event-driven mode.
trigger (v1 only)When to apply settingsauto (Battery Saver), boot, manualautoIgnored in v2.
delayPolling interval (seconds)Integer3Higher values reduce CPU usage, but may takr longer to detect events and commands. Lower values may use more CPU cycles, but provide faster detection.
keep_on_chargeKeep settings active while chargingtrue, falsetrueOnly useful with trigger=auto (v1) or low_power (v2).
handle_appsManage app behaviorfalse, kill, nice, suspendfalsesuspend requires a valid allowlist.
allowlistFile with allowed app packagesPath (e.g., /data/local/tmp/XtremeBS/apps.allow)/data/local/tmp/XtremeBS/apps.allowCreate manually; list one package per line (e.g., com.termux).
denylistFile with system apps to managePath (e.g., /data/local/tmp/XtremeBS/apps.deny)/data/local/tmp/XtremeBS/apps.denyOptional; for system apps.
handle_coresSet CPU governors to powersavefalse, auto, Space-separated cores (e.g., cpu4 cpu5)falseauto targets low-power cores.
disable_coresDisable CPU coresfalse, auto, Space-separated cores (e.g., cpu6 cpu7)falseauto disables high-power cores; avoid on Samsung devices.
handle_gmsManage Google Mobile Servicesfalse, nice, killfalsekill breaks Google apps and SafetyNet/Play Integrity.
handle_procReprioritize system processestrue, falsefalseUse with proc_file; may delay messages/alarms.
proc_fileFile with processes to reprioritizePath (e.g., /data/local/tmp/XtremeBS/proc.list)/data/local/tmp/XtremeBS/proc.listFormat: process_name nice_level (e.g., netd 19).
low_ramEnable low RAM modetrue, falsefalseAvoid on OnePlus devices; may cause random reboots.
dozeForce Doze modefalse, light, deepfalseMay break alarms; test carefully.
kill_wifiDisable WiFitrue, falsefalseSaves power but disables WiFi toggle in Settings.
notifyShow notificationstrue, falsetrueDisable to not use notifications.
log_fileLog file pathPath (e.g., /sdcard/XtremeBS.log)/sdcard/XtremeBS.logSet log_level for verbosity.
log_levelLogging verbosity1 (INFO), 2 (VERBOSE), 3 (DEBUG)2Higher levels aid debugging.

Allowlist Example (apps.allow):

com.termux
com.google.android.inputmethod.latin
com.topjohnwu.magisk

Process File Example (proc.list):

netd 19
system_server 10

[!CAUTION] Always include essential apps (e.g., keyboard, terminal) in apps.allow when using handle_apps=suspend. Without a valid allowlist, apps may become unusable, requiring XBSctl safe via ADB.


XBSctl Commands

Control XtremeBS with the XBSctl command-line tool (run as root via su):

CommandDescriptionUsage
startStart XtremeBS (v1) or an event (v2)XBSctl start (v1/manual) or XBSctl start my_event (v2)
stopStop XtremeBS (v1) or an event (v2)XBSctl stop (v1/manual) or XBSctl stop my_event (v2)
reloadReload the configXBSctl reload
pausePause trigger handlingXBSctl pause
resumeResume trigger handling or exit safe modeXBSctl resume
safeEnter safe mode (stops XtremeBS, unsuspends apps)XBSctl safe

[!TIP] Use XBSctl safe via ADB (adb shell XBSctl safe) if the device becomes unresponsive due to misconfiguration.


Usage Tips

  1. Start Slow:

    • Enable one option at a time (e.g., handle_apps=nice) and test for 24 hours to ensure stability.
    • Avoid aggressive settings like disable_cores initially, especially on Samsung or OnePlus devices.
  2. Debugging:

    • Check /data/local/tmp/XtremeBS/XtremeBS.status for CPU, WiFi, and Doze states.
    • Set log_level=3 and review /sdcard/XtremeBS.log for detailed logs if issues occur.
    • Run su -c ps -eo "%cpu pid cmd" | sort -n -k1,1 to identify high-CPU processes for proc_file.
  3. Device-Specific Notes:

    • Samsung Devices: Avoid disable_cores and handle_cores to prevent reboots or SystemUI crashes.
    • OnePlus Devices: Disable low_ram to avoid random reboots.
  4. Security:

    • Restrict config file permissions: chmod 600 /data/local/tmp/XtremeBS/*.
    • Avoid sharing configs, as they may include sensitive app data or cause instability on different devices.

FAQ

Q: My device soft-loops or SystemUI crashes. What do I do?
A: You likely enabled too many aggressive options. Enter safe mode with adb shell XBSctl safe, disable risky settings (e.g., disable_cores, low_ram), and test incrementally. Check logs for clues.

Q: Will XtremeBS brick my device?
A: No, it won’t cause hard bootloops. However, misconfigurations can cause lag, missed alarms, or crashes. Always back up your device.

Q: Is XtremeBS plug-and-play?
A: No, it requires manual configuration. Start with the default config and adjust based on your device’s needs. An app is in development to simplify this.

Q: How effective is XtremeBS?
A: With proper tuning, it can extend battery life significantly. Effectiveness depends on your config and device.

Q: Why does my config not take effect?
A: Ensure you run XBSctl reload or reboot after changes. Verify event names (v2) are valid and check logs for errors. Use the web UI to avoid syntax issues.

Q: Can I use XtremeBS with other battery-saving modules?
A: Yes, but conflicts may occur (e.g., with L Speed, Naptime). Disable overlapping features in other modules and test thoroughly.


Troubleshooting


Contributing

We welcome contributions! To contribute:

  1. Fork the repository: DethByte64/Xtreme-Battery-Saver.

  2. Submit pull requests with bug fixes, features, or documentation improvements.

  3. Report bugs or suggest features via GitHub Issues.


Acknowledgments


License

XtremeBS is released under the GPLv3 License.

Download

Module Info

Module By : DethByte64
Magisk : ✅ Supported
KernelSu : ✅ Supported
KernelSuNext : ✅ Supported
APATCH : ✅ Supported
Date Release :
If the link is broken or there is something that needs to be updated in the post contact us.

© 2025 Magisk Community