#!/bin/sh

# File:         fonttest.textart
# Description:  Fonts testing
# Author:       NNB
#               └─ https://github.com/NNBnh
# URL:          https://github.com/NNBnh/nnbs-text-art/blob/main/other/fonttest.textart
# License:      GPLv3

#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <https://www.gnu.org/licenses/>.


# Values
TEXT="${1:-abcd efg hijk lmno pqrs tuv wxyz\nABCD EFG HIJK LMNO PQRS TUV WXYZ\n  1234567890       ,./\\;'[]-=\`\n  !@#\$%%^&*()      <>?|:\"\{\}_+~}"
STYLES="${2:-normal bold italic}"

# Start
for style in $STYLES; do
	case "$style" in
		'normal') print="$print${print:+\n}\033[0m$TEXT\033[0m" ;;
		'bold')   print="$print${print:+\n}\033[1m$TEXT\033[0m" ;;
		'italic') print="$print${print:+\n}\033[3m$TEXT\033[0m" ;;
	esac
done

echo -e "\n$print\n"


exit 0
