Variable: artist-figlet-list-fonts-command
artist-figlet-list-fonts-command is a customizable variable defined in
artist.el.gz.
Value
"for dir in `figlet -I2`; do cd $dir; ls *.flf; done"
Documentation
Command to run to get list of available fonts.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defcustom artist-figlet-list-fonts-command
;; list files ending with *.flf in any directory printed by the
;; ``figlet -I2'' command. I think this will not produce more than
;; one directory, but it never hurts to be on the safe side...
"for dir in `figlet -I2`; do cd $dir; ls *.flf; done"
"Command to run to get list of available fonts."
:group 'artist-text
:type 'string)