Skip to content

Instantly share code, notes, and snippets.

@mohamad-supangat
Created January 5, 2024 06:33
Show Gist options
  • Save mohamad-supangat/91fbdb0313915927a86fa8f7b987e63d to your computer and use it in GitHub Desktop.
Save mohamad-supangat/91fbdb0313915927a86fa8f7b987e63d to your computer and use it in GitHub Desktop.
Auto Change Android Battery level to 100 every 3 second

using magisk place script to /data/adb/service.d chmod +x auto.sh

#!/system/bin/sh
while true
do
dumpsys battery set level 100
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment