2023-06-30 13:41:22 -05:00
|
|
|
(ql:quickload '(alexandria str uiop))
|
2023-06-30 13:48:17 -05:00
|
|
|
(load "packages.lisp")
|
2023-06-30 13:41:22 -05:00
|
|
|
(load "figlet.lisp")
|
|
|
|
|
|
|
|
|
|
|
|
(defun local-path (subpath)
|
|
|
|
(format nil "~A~A" (uiop:getcwd) subpath))
|
|
|
|
|
|
|
|
|
|
|
|
(mapcar
|
|
|
|
(lambda (font-name)
|
|
|
|
(figlet:save-font-to-file
|
|
|
|
(local-path (format nil "res/fonts/~A.flf.lisp" font-name))
|
|
|
|
(figlet:figlet-font-plist (local-path (format nil "res/fonts/~A.flf" font-name)))
|
2023-06-30 13:48:17 -05:00
|
|
|
":FLORA-SEARCH-AURORA.INTERMISSION"
|
2023-06-30 13:41:22 -05:00
|
|
|
(format nil "*~A-font*" font-name)))
|
|
|
|
'("standard" "small"))
|
|
|
|
|
2023-06-30 13:48:17 -05:00
|
|
|
|
2023-06-30 13:41:22 -05:00
|
|
|
(quit)
|