Skip to content

Instantly share code, notes, and snippets.

@iGlitch
iGlitch / saveme.sh
Last active June 2, 2024 10:39
init.d script for Google Pixel for performance and battery tweaks
#!/system/bin/sh
# assuming youu have magisk, put this in /data/adb/service.d/
sleep 22;
# Disable sysctl.conf to prevent ROM interference #1
if [ -e /system/etc/sysctl.conf ]; then
mount -o remount,rw /system;
mv /system/etc/sysctl.conf /system/etc/sysctl.conf.bak;
mount -o remount,ro /system;
@Pulimet
Pulimet / AdbCommands
Last active October 18, 2024 00:59
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.