refactor(sources/functions.sh): add clear command in banner function

This commit is contained in:
TheHackdes 2026-05-04 19:42:54 +02:00
parent f756ca2991
commit debf81e5a9
5 changed files with 28 additions and 3 deletions

View file

@ -12,6 +12,7 @@ C_INVERSE="\e[7m"
C_RESET="\e[0m"
function banner() {
clear
figlet -w 200 ${1} | lolcat
echo -e "Created by ${CREATOR_NAME}\n"
}