Figlet print: a simple shell tool to print text strings with figlet fonts. Basically a wrapper of my fork of go-figure.
fprint hello
# or
echo hello | fprint
Run fprint -h
to find out what it can do.
Settings can be passed by command line arguments or by config. Configs are in toml format and used with the -k
parameter. This is how they look.
text = "main text"
font = "univers"
colour = "yellow"
pretext = "text before"
posttext = "text after"
Either build by hand or use task.
# this
go build
# or that
task
# remember what you can do if you have 'task'
task -l