module Bash: sig .. end
Provides wrappers for some bash fancy printing, mainly boxes and colors.
type colors = {
|
green : string; |
|
red : string; |
|
blue : string; |
|
yellow : string; |
|
orange : string; |
|
default : string; |
|
underline : string; |
}
A set of nice colors.
val colors : colors
They have been chosen arbitrarily out of the 256-color set available.
val twidth : int
The terminal's width.
val theight : int
The terminal's height.
val box : string -> string
Make a title.
val reset : unit -> unit
Reset the cursor to the top-left corner of the screen