#!/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="/data/data/com.termux/files/usr/libexec/termux-api Toast $PARAMS"
if [ $# = 0 ]; then
    $CMD
else
    echo $@ | $CMD
fi
