1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
#!/bin/sh
DIALOG=Xdialog
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 20 seconds to read this..." 0 0 10000
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 9 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message..
You have 8 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 7 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 6 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 5 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 4 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 3 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message.
You have 2 seconds to read this..." 0 0
$DIALOG --title "INFO BOX" \
--infobox "Hi, this is an information box. It is
different from a message box in that it will
not pause forever waiting for input after
displaying the message..
You have 1 second to read this..." 0 0
|