1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-19 18:18:13 +02:00

moving Iosevka font to its own repo. add install script to download the fonts.

This commit is contained in:
Henrik Hautakoski 2026-07-15 23:20:54 +02:00
parent 2af28c3050
commit 945e4e136e
10 changed files with 18 additions and 148 deletions

18
fonts/Ioseveka-custom.sh Executable file
View file

@ -0,0 +1,18 @@
#!/bin/bash
BASE_URL=https://raw.githubusercontent.com/pnx/Iosevka-custom/main/dist
INSTALL_DIR=~/.local/share/fonts
FONTS=(
IosevkaCustom-Regular.ttf
IosevkaCustom-SemiBold.ttf
IosevkaCustomNerdFont-Regular.ttf
IosevkaCustomNerdFont-SemiBold.ttf
)
for font in ${FONTS[@]}; do
echo "Installing ${font} to '${INSTALL_DIR}/${font}'"
curl -L -o "${INSTALL_DIR}/${font}" "${BASE_URL}/${font}"
done