/ ascii() cont.

nice one, i have to say. maybe not that useful though.
This commit is contained in:
committer@tuxwarrior
2025-05-09 19:21:44 -05:00
parent 07a020fae5
commit eab521527d

View File

@@ -224,13 +224,54 @@ rshift() {
# ---
ascii() {
if [[ -n $1 ]] ; then
if [[ $1 == "banner" ]] && [[ -n $2 ]]; then
if [[ $1 == "banner" ]] && [[ -n $2 ]] ; then
figlet -f ANSI\ Shadow -w 200 $2
elif [[ $1 == "date" ]] ; then
date | figlet -f future
elif [[ $1 == "info" ]] ; then
echo "toilet -f future Hello, World!"
echo "figlet -f future Hello, World!"
elif [[ $1 == "fav" ]] || [[ $1 == "favs" ]] || [[ $1 == "favorites" ]] ; then
text="Klevstul"
if [[ -n $2 ]]; then
text=$2
fi
echo
echo "3D-ASCII"
figlet -w 200 -f 3D-ASCII ${text}
echo
echo "Alpha"
figlet -w 200 -f Alpha ${text}
echo
echo "ANSI Regular"
figlet -w 200 -f ANSI\ Regular ${text}
echo
echo "Banner3-D"
figlet -w 200 -f Banner3-D ${text}
echo
echo "cyberlarge"
figlet -w 200 -f cyberlarge ${text}
echo
echo "cybermedium"
figlet -w 200 -f cybermedium ${text}
echo
echo "doh"
figlet -w 200 -f doh ${text}
echo
echo "future"
figlet -w 200 -f future ${text}
echo
echo "isometric1"
figlet -w 200 -f isometric1 ${text}
echo
echo "isometric2"
figlet -w 200 -f isometric2 ${text}
echo
echo "s-relief"
figlet -w 200 -f s-relief ${text}
echo
echo "pagga"
figlet -w 200 -f pagga ${text}
elif [[ $1 == "figlets" ]] ; then
figlets.sh
elif [[ $1 == "fonts" ]] ; then