From d8f23cdf370b93388f3cb9fd339d07812061c0ab Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Sat, 5 Oct 2024 12:07:15 -0700 Subject: [PATCH] Add .local/bin/figlet-gallery --- dot_local/bin/executable_figlet-gallery | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 dot_local/bin/executable_figlet-gallery diff --git a/dot_local/bin/executable_figlet-gallery b/dot_local/bin/executable_figlet-gallery new file mode 100644 index 0000000..de0aeed --- /dev/null +++ b/dot_local/bin/executable_figlet-gallery @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +find /usr/share/figlet/fonts -name '*.[ft]lf' | while read -r font; do + echo "$font:" + figlet -t -f "$font" "Hello World" + echo + echo +done | less