Figlet and Lolcat are fun terminal tools that help you create stylish and colorful text in Terminal. Figlet converts normal text into big ASCII banners, and Lolcat adds rainbow colors to the output. You can use them to make your terminal look cool or create eye-catching text for screenshots and videos.
Installation Commands
Update and upgrade packages:
apt update && apt upgrade -yInstall Figlet:
apt install figlet -yInstall Lolcat:
pkg install ruby -y && gem install lolcatUsage Commands
Create simple text banner:
figlet HelloAdd colors using Lolcat:
figlet Hello | lolcatWrite custom message:
figlet "Yo Yo" | lolcatUse different fonts:
figlet -f slant Hello | lolcatList all available fonts:
showfigfontsUse random colors:
figlet Linux Distro | lolcat -aChange color speed:
figlet Linux Distro | lolcat -p 0.5Center align text:
figlet -c Hello Linux | lolcatAdjust text width:
figlet -w 100 Hello Linux | lolcatReverse rainbow colors:
figlet Hello Linux | lolcat -rUse custom color seed:
figlet Hello Linux | lolcat -s 10Add delay animation:
figlet Hello Linux | lolcat -d 100Combine multiple words:
echo "Welcome to Linux Distro" | figlet | lolcatCreate multi-line banner:
figlet -f big "Linux Tools" | lolcatPipe any command output:
ls | lolcatShow system info in color:
uname -a | figlet | lolcatCombine with date:
date | figlet | lolcatShow system name:
uname -a | lolcatAdd banner in terminal startup:
nano ~/.bashrcAdd this line:
figlet "Welcome" | lolcatSave and restart Termux.

