termux-api: Add termux-toast
This commit is contained in:
parent
2aa217bfd4
commit
17d445b3f3
24
packages/termux-api/termux-toast
Executable file
24
packages/termux-api/termux-toast
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/system/bin/sh
|
||||||
|
|
||||||
|
show_usage () {
|
||||||
|
echo "usage: termux-toast [-s|--short]"
|
||||||
|
echo "Show the text from stdin in a Toast (a transient popup). Options:"
|
||||||
|
echo " -s, --short only show the toast for a short while"
|
||||||
|
}
|
||||||
|
|
||||||
|
PARAMS=""
|
||||||
|
O=`busybox getopt -q -l short -l help -- sh "$@"`
|
||||||
|
if [ $? != 0 ] ; then show_usage; exit 1 ; fi
|
||||||
|
eval set -- "$O"
|
||||||
|
while true; do
|
||||||
|
case "$1" in
|
||||||
|
-s|--short) PARAMS="$PARAMS --ez short true"; shift 1;;
|
||||||
|
-h|--help) show_usage; exit 0;;
|
||||||
|
--) shift; break;;
|
||||||
|
*) echo Error; exit 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $# != 0 ]; then show_usage; exit 1; fi
|
||||||
|
|
||||||
|
termux-api Toast $PARAMS
|
Loading…
x
Reference in New Issue
Block a user