Files
c01o aec2b7b179 Add cjk fonts
this should close #274
2023-06-09 14:37:09 +09:00

13 lines
375 B
Plaintext
Executable File

#!/usr/bin/with-contenv bash
if ! apk info --installed ttf-dejavu >/dev/null; then
echo "**** Adding firefox-fonts packages to install list ****"
echo "\
ttf-dejavu \
font-noto-emoji \
font-noto-cjk \
font-croscore" >> /mod-repo-packages-to-install.list
else
echo "**** Firefox-fonts packages already installed, skipping ****"
fi