diff --git a/private_dot_config/fontconfig/fonts.conf b/private_dot_config/fontconfig/fonts.conf index eda2b26..1ae253c 100644 --- a/private_dot_config/fontconfig/fonts.conf +++ b/private_dot_config/fontconfig/fonts.conf @@ -21,8 +21,9 @@ serif - Noto Serif for Powerline - Noto Serif + Charis SIL + Noto Serif for Powerline + Noto Serif Liberation Serif DejaVu Serif Bitstream Vera Serif @@ -32,6 +33,8 @@ sans-serif + Inter + Atkinson Hyperlegible Noto Sans for Powerline Noto Sans Liberation Sans @@ -45,7 +48,11 @@ monospace - Inconsolata-g for Powerline + UbuntuMono Nerd Font + SauceCodePro Nerd Font + Ubuntu Mono + Source Code Pro + Inconsolata-g for Powerline Liberation Mono DejaVu Sans Mono Bitstream Vera Sans Mono diff --git a/run_onchange_before_25_fonts.sh b/run_onchange_before_25_fonts.sh index bf3301d..f1c4caf 100755 --- a/run_onchange_before_25_fonts.sh +++ b/run_onchange_before_25_fonts.sh @@ -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"