Disable Zram Magisk ((top)) -

#!/system/bin/sh

: If your device has 4GB of RAM or less, disabling zRAM will significantly reduce multitasking capabilities and likely lead to aggressive app killing by the system. Storage Protection

#!/system/bin/sh # Wait for the system to fully boot sleep 30 # Turn off swap space on zRAM swapoff /dev/block/zram0 # Reset the zRAM disk size to zero echo 1 > /sys/block/zram0/reset echo 0 > /sys/block/zram0/disksize Use code with caution.

disable zram magisk
TWÓJ KOKPIT disable zram magisk
0

#!/system/bin/sh

: If your device has 4GB of RAM or less, disabling zRAM will significantly reduce multitasking capabilities and likely lead to aggressive app killing by the system. Storage Protection

#!/system/bin/sh # Wait for the system to fully boot sleep 30 # Turn off swap space on zRAM swapoff /dev/block/zram0 # Reset the zRAM disk size to zero echo 1 > /sys/block/zram0/reset echo 0 > /sys/block/zram0/disksize Use code with caution.

Loading..