mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2024-11-22 13:46:26 -08:00
LG8n: rootdir: Improve init.gesture.sh to allow dt2w to be turned off
* may have to be adapted for every rom since not every rom uses the same dt2w settings key lol Signed-off-by: Shirayuki39 <lorddemecrius83@proton.me>
This commit is contained in:
parent
a865a799ff
commit
9e8121393c
|
@ -1,2 +1,12 @@
|
|||
# Enable DT2W
|
||||
while [[ -z $(getprop sys.boot_completed) ]]; do sleep 5; done
|
||||
|
||||
while true; do
|
||||
dt2wstate=$(settings get secure double_tap_to_wake)
|
||||
if [ "$dt2wstate" == "0" ]; then
|
||||
echo cc2 > /proc/gesture_function
|
||||
elif [ "$dt2wstate" == "1" ]; then
|
||||
echo cc1 > /proc/gesture_function
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue