feat: font config and font download

This commit is contained in:
Daniel Bauer
2026-01-14 11:03:16 +01:00
parent b84ba672c7
commit 4db2490d36
2 changed files with 17 additions and 4 deletions

View File

@@ -18,7 +18,6 @@ NERD_FONTS_VERSION="v3.4.0"
NERD_FONTS=(
"UbuntuMono"
"SourceCodePro"
"JetBrainsMono"
"AtkinsonHyperlegibleMono"
)
@@ -34,6 +33,13 @@ for font in "${NERD_FONTS[@]}"; do
echo "Installed ${font} Nerd Font"
done
# Install Inter (sans-serif)
echo "Downloading Inter..."
curl -fsSL "https://github.com/rsms/inter/releases/download/v4.1/Inter-4.1.zip" -o "${TEMP_DIR}/Inter.zip"
unzip -q "${TEMP_DIR}/Inter.zip" -d "${TEMP_DIR}/inter"
find "${TEMP_DIR}/inter" -path "*/Inter Desktop/*.ttf" -exec cp {} "${FONT_DIR}/" \;
echo "Installed Inter"
# Install Charis SIL
echo "Downloading Charis SIL..."
CHARIS_VERSION="6.200"