Skip to content

Commit edd42f8

Browse files
committed
service
1 parent 8cd775c commit edd42f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

service.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
## DT2W
44
## Simple script that will enable double tap to wake during late boot.
55
## For Nexus 7 [2013] (Flo/Deb) and Nexus 10 (Manta)
6+
## Nexus 9 (Flounder)
67

78
if [ $(find /sys/ -name 'doubletap*' | sed '$!d') ]; then
89
echo "1" >$(find /sys/ -name 'doubletap*' | sed '$!d');
910
elif [ $(find /sys/ -name 'dt2w*' | sed '$!d') ]; then
1011
echo "1" >$(find /sys/ -name 'dt2w*' | sed '$!d');
12+
elif [ $(find /sys/ -name 'wake_gesture' | sed '$!d') ]; then
13+
echo "1" >$(find /sys/ -name 'wake_gesture' | sed '$!d');
1114
fi;

0 commit comments

Comments
 (0)