android_device_tecno_LG8n/rootdir/bin/init.gesture.sh
Shirayuki39 70cd3788d3 LG8n: rootdir: Change init.gesture.sh code
* Instead of trying to read from a secure key, use it to assist dt2w service

Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
2024-08-13 22:44:40 +08:00

15 lines
338 B
Bash

#!/vendor/bin/sh
# Enable DT2W
while [[ -z $(getprop sys.boot_completed) ]]; do sleep 5; done
while true; do
dt2w_state=$(getprop persist.sys.MT6789.dt2w)
if [ "$dt2w_state" == "0" ]; then
echo cc2 > /proc/gesture_function
elif [ "$dt2w_state" == "1" ]; then
echo cc1 > /proc/gesture_function
fi
sleep 1
done