feat: Improve bootstrap

This commit is contained in:
2022-05-21 02:30:05 +02:00
parent b75c801a47
commit d8a7adcdbb
8 changed files with 153 additions and 76 deletions

21
fonts.bash Normal file
View File

@ -0,0 +1,21 @@
# FONTS
fontdir="$HOME/.local/share/fonts"
declare -a fonts
fonts+=("Inconsolata")
fonts+=("Ubuntu")
fonts+=("Hack")
fonts+=("DejaVuSansMono")
# Create font dir
test -d "${fontdir}" || mkdir -p "${fontdir}"
# Download fonts
for font in "${fonts[@]}"
do
wget -q -O /tmp/${font}.zip "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/${font}.zip" && cd ${fontdir} && unzip -u /tmp/${font}.zip && rm /tmp/${font}.zip
done
# Refresh cache
fc-cache --force --verbose ${fontdir}