How do people make the fancy titles displayed when bash script its run

bash, title

Solution

Take a look at `tput` commands. `tput` is used to alter the terminal characteristics.

e.g

tput bold
tput setaf 3
tput setab 4
tput reset

Problem

How can I make bash script have a cool title Currently I am just using echo to give the name arg cliccker to my script instead of having one boring line how do i make fnacy bash sript logos like this below:

Original source