Skip to content

Instantly share code, notes, and snippets.

View pitoniak32's full-sized avatar

David Pitoniak pitoniak32

View GitHub Profile
@pitoniak32
pitoniak32 / install-nf.sh
Last active November 11, 2024 14:54
install JetBrains Nerd Font on Ubuntu
# Browse the releases page here: https://github.com/ryanoasis/nerd-fonts/releases/
# Update the following variables with the desired version and font
export VERSION="v3.0.2"
export FONT_PACKAGE="JetBrainsMono.zip"
export FONTS_DIR=$XDG_DATA_HOME/fonts
wget -P $FONTS_DIR https://github.com/ryanoasis/nerd-fonts/releases/download/$VERSION/$FONT_PACKAGE && \
cd $FONTS_DIR && unzip $FONT_PACKAGE && rm $FONT_PACKAGE