Mindless | Channel
953 subscribers
252 photos
7 videos
61 files
198 links
Simple module / script for personal use
Download Telegram
BBoost[18112025] | [AxManager]

Changelog :
- set-fixed-performance logic change
- Add Temp controll ( sc : @Dcx400 )
- Optimized loop time ( thx to @HoyoSlave )
πŸ‘1
DIR="/sdcard/Btool"
CONFIG_FILE="$DIR/bin/config.ini"
read_config() {
while IFS='=' read -r lowkey value; do
[ -z "$lowkey" ] || [ "${lowkey###}" != "$lowkey" ] && continue
lowkey=$(echo "$lowkey" | tr -d '[:space:]')
case "$lowkey" in
game) game="$value" ;;
esac
done < "$CONFIG_FILE"
}
read_config

echo "game : $game

existed list : $(cmd package list packages | cut -d: -f2 | grep -Ew "$(echo $game | sed 's/ /|/g')")"


run this and screenshot for me
Bres[21112025] | [AxPlugins]

Info :
- Change window size + density in game
- Change sf.duration based on fps + window size

Thanks to : @Dcx400
Dev : @Brains82
🀑10
any feedback dwag ?
BBoost[01122025] | [AxPlugin]

changelog :
- Added screen on / off optimizer
- Added ram compact after game closed
- better logic structure

Thanks to : @Dcx400 @HoyoSlave
Dev : @Brains82
any feedback ?
cmd package resolve-activity -a android.intent.action.MAIN -c android.intent.category.HOME | grep -m1 packageName= | cut -d= -f2


ss for me
This media is not supported in your browser
VIEW IN TELEGRAM
for anyone who wonder how to manually add packagename into [AxPlgins]
fyi :
if you attempt framework crash by any method, and than soft reboot right after it
it does apply vulkan to all pipe line but it still has bug render like app crash and etc
Forwarded from LyK.21
#LimitThread@lykafkaa

THRESH=80

for a in $(pm list packages --user 0 | cut -f2 -d:); do
pid=$(pidof $a)
if [ ! -z "$pid" ]; then
threads=$(grep Threads "/proc/$pid/status" 2>/dev/null | cut -f2 -d:)
if [ ! -z "$threads" ]; then
echo "$threads Threads ($a)"

# kalau thread di atas threshold β†’ apply limit
if [ "$threads" -gt "$THRESH" ]; then
echo ">>> limiting $a (threads=$threads)"

# App standby restricted
am set-standby-bucket $a restricted

# batasi kemampuan background
cmd appops set $a RUN_IN_BACKGROUND ignore
cmd appops set $a RUN_ANY_IN_BACKGROUND ignore
cmd appops set $a WAKE_LOCK ignore
cmd appops set $a START_FOREGROUND ignore
cmd appops set $a SCHEDULE_EXACT_ALARM ignore

# kill active thread burst
killall -9 $a 2>/dev/null
fi
fi
fi
done | sort -n


dibantu chatgpt
BBoost [9122025] | [AxPlugins]

Changelog :
- Add preload using Kanase by @Koneko_dev
- add Game mode intervention and FPS throttling
- Add Third app restrict permission for battery live and light weight
- Compile game every 3am
- Optimize Script Structure ( again )

# READ !! #
Fixed minnor syntax

Cr : @HoyoSlave @Dcx400 @koneko_dev
feedback ?
BBoost Log | [AxManager]
Ver : [9122025]

- Auto performance and battery mode
- Apply Game mode intervention ( cmd game )
- Compile game for every 3 am
- Perform trim memmory and compact memmory every after closed game and once a while if screen off
- Dynamic Thermal controll
- Preload lib and game
- CPU hint controll


Note :
- Add your packagename into /sdcard/Btool/bin/config.ini
- There is hidden Tools added into [9122025], type "bt" to acces
- feel free to feddback


Credit for :
@Dcx400 @HoyoSlave
πŸ”₯1
please guys bantuin atmin buat ngecut price, atmin pen beli kamera 😁
Forwarded from ManX Project
MANKTWO IS BACK!


MankTwo V.9 Is Here !!


Suitable for all games


Extract on VortexModules



Feature
-Performance
-Cache Wipe
-Frame Optimizer
-Optimize Net
-Rendering Engine
-Frame Rate
-Interaction Sensitivity



Dev: @GraceNishh
Thanks to: FahrezONE Dev



Download | Source


Give feedback for next update
@GraceNishh
run this code and send me the result
for memek in $(pm list packages | grep google | cut -f2 -d:); do
am set-standby-bucket --user 0 $memek 40
echo "$memek : $(am get-standby-bucket --user 0 $memek 2>/dev/null)"
done