#!/system/bin/sh

busybox="/data/data/com.paget96.lsandroid/files/binary/busybox"
log="/data/data/com.paget96.lsandroid/files/log/mainLog"
date="[$($busybox date +"%H:%M:%S %d-%m-%Y")]"

$busybox echo "$date Disabling LMK fast_run..." >>$log

lmk_fast_run=/sys/module/lowmemorykiller/parameters/lmk_fast_run
if [ -e $lmk_fast_run ]; then
  $busybox echo "0" >$lmk_fast_run
fi

$busybox echo "$date LMK fast_run disabled" >>$log
