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:
parent
2af28c3050
commit
945e4e136e
10 changed files with 18 additions and 148 deletions
18
fonts/Ioseveka-custom.sh
Executable file
18
fonts/Ioseveka-custom.sh
Executable 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
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue