shoestrap/recipes/default/nerd-fonts

11 lines
416 B
Plaintext
Raw Normal View History

2024-11-26 23:02:18 +00:00
#! /bin/bash
VERSION="3.3.0"
curl -L -o "$TMP_DIR/NerdFontsSymbolsOnly.tar.xz" "https://github.com/ryanoasis/nerd-fonts/releases/download/v${VERSION}/NerdFontsSymbolsOnly.tar.xz"
if [[ "$UNAME_STR" == "Darwin" ]]; then
tar -xzvf "$TMP_DIR/NerdFontsSymbolsOnly.tar.xz" -C ~/Library/Fonts/
elif [[ "$UNAME_STR" == "Linux" ]]; then
tar -xzvf "$TMP_DIR/NerdFontsSymbolsOnly.tar.xz" -C ~/.local/share/fonts/
fi