2015-08-14 21:27:47 +02:00
|
|
|
#!/bin/sh
|
2016-04-26 01:37:45 +02:00
|
|
|
set -e -u
|
2015-07-29 04:09:18 +02:00
|
|
|
|
2016-04-26 01:37:45 +02:00
|
|
|
SCRIPTNAME=termux-toast
|
2015-07-29 04:09:18 +02:00
|
|
|
show_usage () {
|
2016-04-26 01:37:45 +02:00
|
|
|
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
|
2015-07-29 04:09:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PARAMS=""
|
2016-04-26 01:37:45 +02:00
|
|
|
while getopts :hs option
|
|
|
|
do
|
|
|
|
case "$option" in
|
|
|
|
h) show_usage;;
|
|
|
|
s) PARAMS="--ez short true";;
|
|
|
|
?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
|
|
|
|
esac
|
2015-07-29 04:09:18 +02:00
|
|
|
done
|
2016-04-26 01:37:45 +02:00
|
|
|
shift $(($OPTIND-1))
|
2015-07-29 04:09:18 +02:00
|
|
|
|
2016-04-26 01:37:45 +02:00
|
|
|
CMD="@TERMUX_API@ Toast $PARAMS"
|
|
|
|
if [ $# = 0 ]; then
|
|
|
|
$CMD
|
|
|
|
else
|
|
|
|
echo $@ | $CMD
|
|
|
|
fi
|