termux-api-package/scripts/termux-toast
2017-04-09 18:20:02 +02:00

29 lines
662 B
Bash
Executable File

#!/data/data/com.termux/files/usr/bin/sh
set -e -u
SCRIPTNAME=termux-toast
show_usage () {
echo "Usage: termux-toast [-s] [text]"
echo "Show text in a Toast (a transient popup). The text to show is either supplied as arguments or read from stdin if no arguments are given."
echo " -s only show the toast for a short while"
exit 0
}
PARAMS=""
while getopts :hs option
do
case "$option" in
h) show_usage;;
s) PARAMS="--ez short true";;
?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
esac
done
shift $(($OPTIND-1))
CMD="@TERMUX_API@ Toast $PARAMS"
if [ $# = 0 ]; then
$CMD
else
echo $@ | $CMD
fi