xref: /freebsd/contrib/dialog/samples/infobox3 (revision 61e21613)
1#! /bin/sh
2# $Id: infobox3,v 1.6 2019/12/10 23:37:10 tom Exp $
3
4. ./setup-vars
5
6left=10
7unit="seconds"
8while test $left != 0
9do
10
11$DIALOG --sleep 1 \
12	--begin 5 0 \
13	--title "INFO BOX" "$@" \
14        --infobox "Hi, this is an information box. It is
15different from a message box: it will
16not pause waiting for input after displaying
17the message. The pause here is only introduced
18by the sleep command within dialog.
19You have $left $unit to read this..." 0 0
20left=`expr $left - 1`
21test "$left" = 1 && unit="second"
22done
23