all the fonts

This commit is contained in:
Von Random 2024-12-30 05:51:42 +02:00
parent 523dcb54f6
commit a4b255c420
8 changed files with 146 additions and 15 deletions

7
gen.sh
View file

@ -13,6 +13,9 @@ NAMES=(
)
for name in $NAMES[@]; do
export NAME=$name FNAME=${name// /}
envsubst < template.rb > Casks/${${name:l}// /-}.rb
NAME=$name
FNAME=${name// /}
PKGNAME="otf-${${name:l}// /-}"
export NAME FNAME PKGNAME
envsubst < template.rb > Casks/$PKGNAME.rb
done