librhash: Update from 1.3.5 to 1.3.6
[termux-packages] / packages / termux-tools / termux-wake-lock
1 #!/bin/sh
2
3 if [ $# != 0 ]; then
4 echo 'usage: termux-wake-lock'
5 echo 'Acquire the Termux wake lock to prevent the CPU from sleeping.'
6 exit 1
7 fi
8
9 am startservice \
10 --user 0 \
11 -a com.termux.service_wake_lock \
12 com.termux/com.termux.app.TermuxService \
13 > /dev/null