2021-08-01 02:40:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
joke_len=`expr length "$joke"`
|
|
|
|
joke_font=roman
|
|
|
|
|
|
|
|
date_font=`echo "roman colossal" | sed 's/ /\n/g' | sort -R | head -1`
|
|
|
|
time_font=`echo "roman poison colossal" | sed 's/ /\n/g' | sort -R | head -1`
|
|
|
|
|
2021-08-01 04:11:35 +00:00
|
|
|
if [ $joke_len -gt 40 ]; then
|
2021-08-01 02:40:50 +00:00
|
|
|
joke_font=thick
|
|
|
|
fi
|
|
|
|
|
|
|
|
#echo "$date_font $time_font $joke_font"
|
2021-08-01 02:48:51 +00:00
|
|
|
date "+%a %b %e" | figlet -Wnctf "./fonts/$date_font"
|
|
|
|
date "+%l:%M %p" | figlet -Wnctf "./fonts/$time_font"
|
|
|
|
echo -e "\n$joke" | figlet -nctf "./fonts/$joke_font"
|
2021-08-01 02:40:50 +00:00
|
|
|
|