Merge pull request #24 from dkramer95/brightness

Add termux-brightness
This commit is contained in:
Fredrik Fornwall 2018-06-14 23:41:56 +02:00 committed by GitHub
commit 6ac9364221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
scripts/termux-brightness Executable file
View File

@ -0,0 +1,22 @@
#!/data/data/com.termux/files/usr/bin/bash
set -e -u
SCRIPTNAME=termux-brightness
show_usage() {
echo "Usage: $SCRIPTNAME brightness"
echo "Set the screen brightness between 0 and 255"
exit 0
}
if [ $# != 1 ]; then
show_usage
fi
if ! [[ $1 =~ ^[0-9]+$ ]]; then
echo "ERROR: Arg must be a number between 0 - 255!"
show_usage
fi
ARGS="--ei brightness $1"
/data/data/com.termux/files/usr/libexec/termux-api Brightness $ARGS