Use these scripts at your own risk - they're examples rather than end user software.

input_widget.oar <title> <default_input>
	Opens an input window of title <title> which allows to input one line of text (default input is <default_input> ;) )
	
output_widget.oar <title> <message>
	Opens a message window of title <title> with content <message>, which may be closed by pressing the return button
	
ack_widget.oar <title> <question>
	Opens a dialog of title <title> with question <question> and two buttons 'Yes' and 'No'
	Pressing 'Yes' will yield an exit value of 0
	Pressing 'No' will yield an exit value of -1
	(Be wary of aborted dialogs (pressing of return) - test your script's safety to that respect!)
	
	
As examples on how to use them in your scripts, consider
example.oar
and
simple_command.oar

(the latter presents the output of a _simple_ NONINTERACTIVE(!) command _after_ its execution)
(the examples assume you have installed the other applications in /usr/local/bin)

