Update files

This commit is contained in:
Hoang Nguyen 2023-03-23 00:08:11 +07:00
parent b237d0b979
commit 6322fa255b
Signed by: folliehiyuki
GPG Key ID: B0567C20730E9B11
9 changed files with 780 additions and 311 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,7 +32,7 @@ variants=(
zipfile="original/ttf-iosevka-term-${version}.zip"
if [ ! -f "${zipfile}" ]; then
printf "\033[1;34mDownloading Iosevka Term version \033[1;31m%s\033[1;34m zip file ...\033[0m\n" "${version}"
curl -fsSL https://github.com/be5invis/Iosevka/releases/download/v${version}/ttf-iosevka-term-${version}.zip -o ${zipfile}
curl -fSL https://github.com/be5invis/Iosevka/releases/download/v${version}/ttf-iosevka-term-${version}.zip -o ${zipfile}
fi
printf "\033[1;34mUnzipping the downloaded archive ...\033[0m\n"

Binary file not shown.

BIN
src/glyphs/extraglyphs.sfd Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -12,12 +12,15 @@ echo "Downloading glyph fonts..."
glyphs=(
"codicons/codicon.ttf"
"font-awesome/FontAwesome.otf"
"materialdesign/MaterialDesignIconsDesktop.ttf"
"materialdesign/MaterialDesignIconsDesktop_orig.ttf"
"powerline-symbols/PowerlineSymbols.otf"
"weather-icons/weathericons-regular-webfont.ttf"
"Pomicons.otf"
"PowerlineExtraSymbols.otf"
"Unicode_IEC_symbol_font.otf"
"devicons.ttf"
"extraglyphs.sfd"
"font-awesome-extension.ttf"
"font-logos.ttf"
"materialdesignicons-webfont.ttf"
@ -31,6 +34,6 @@ for glyph in "${glyphs[@]}"; do
# replace all `whitespace` characters with `%20`
percent_encoded_uri="${upstream_src_glyphs_url}/${glyph//\ /%20}"
curl -fsSL ${percent_encoded_uri} -o "src/glyphs/${glyph}"
curl -fSL ${percent_encoded_uri} -o "src/glyphs/${glyph}"
done
find ./src/glyphs/ -type f -exec chmod 644 '{}' \;