#!/bin/bash
# - bof - #



clear;



# - Install figlet & lolcat - #
sudo pacman -S figlet lolcat --noconfirm --needed



<<'comment'

  # -  - #
  # - Banner - #
  figlet "Rayo";

  # -  - #
  # - Center - #
  figlet -c "Rayo";

  # -  - #
  # - Center & color - #
  figlet -c "Rayo" | lolcat;

  # -  - #
  # - Fonts - #
  showfigfonts;
  banner
  big
  block
  bubble
  digital
  ivrit
  lean
  mini
  script
  shadow
  slant
  small
  smscript
  smshadow
  smslant
  standard

# -  - #
# - Fonts - #
figlet -f small "Additional";
figlet -f small "Programs";

figlet -f small "Additional" | lolcat;
figlet -f small "Programs" | lolcat;

figlet -f standard "Additional";
figlet -f standard "Programs";

comment






# - eof - #