From 7c6e2ba196d0ab1863440414c3831fdb6d9c72d6 Mon Sep 17 00:00:00 2001 From: rzen Date: Sat, 31 Jul 2021 22:48:51 -0400 Subject: [PATCH] correct font path --- dash.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dash.sh b/dash.sh index e108c9e..4fca04a 100755 --- a/dash.sh +++ b/dash.sh @@ -11,7 +11,7 @@ if [ $joke_len -gt 50 ]; then fi #echo "$date_font $time_font $joke_font" -date "+%a %b %e" | figlet -Wnctf "$date_font" -date "+%l:%M %p" | figlet -Wnctf "$time_font" -echo -e "\n$joke" | figlet -nctf "$joke_font" +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"