Various minor fixes

This commit is contained in:
askiiart 2024-07-10 14:29:31 -05:00
parent e8242b0ad0
commit 92bede480f
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
4 changed files with 11 additions and 7 deletions

View file

@ -4,23 +4,23 @@ command_exists() { type "$1" &>/dev/null; }
# on void i could totally install the nerd fonts via `xbps-install nerd-fonts-otf` but i am NOT installing an extra 1.45-ish GB of the rest of the nerd fonts along with it
# stock firacode is available via `font-firacode` though
sudo mkdir /usr/share/fonts/firacode
mkdir -p ~/.local/share/fonts/firacode
mkdir ./tmp-fonts
cd ./tmp-fonts
curl $(curl -s https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest | grep "browser_download_url.*FiraCode.zip" | cut -d : -f 2,3 | tr -d \") -LO
unzip FiraCode.zip
sudo mv FiraCodeNerdFont*.ttf /usr/share/fonts/firacode/
mv FiraCodeNerdFont*.ttf ~/.local/share/fonts/firacode/
if command_exists "xbps-install"; then
sudo xbps-install font-atkinson-hyperlegible-otf
else
sudo mkdir /usr/share/fonts/atkinson-hyperlegible
mkdir -p ~/.local/share/fonts/atkinson-hyperlegible
curl -LO https://raw.githubusercontent.com/googlefonts/atkinson-hyperlegible/main/fonts/ttf/AtkinsonHyperlegible-Regular.ttf
curl -LO https://raw.githubusercontent.com/googlefonts/atkinson-hyperlegible/main/fonts/ttf/AtkinsonHyperlegible-Bold.ttf
curl -LO https://raw.githubusercontent.com/googlefonts/atkinson-hyperlegible/main/fonts/ttf/AtkinsonHyperlegible-Italic.ttf
curl -LO https://raw.githubusercontent.com/googlefonts/atkinson-hyperlegible/main/fonts/ttf/AtkinsonHyperlegible-BoldItalic.ttf
sudo mv AtkinsonHyperlegible*.ttf /usr/share/fonts/atkinson-hyperlegible/
mv AtkinsonHyperlegible*.ttf ~/.local/share/fonts/atkinson-hyperlegible/
fi
cd -