Skip to content

Instantly share code, notes, and snippets.

@pitoniak32
Last active November 11, 2024 14:54
Show Gist options
  • Select an option

  • Save pitoniak32/88eae117f1bc06edf8eac9042119f1ed to your computer and use it in GitHub Desktop.

Select an option

Save pitoniak32/88eae117f1bc06edf8eac9042119f1ed to your computer and use it in GitHub Desktop.
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
fc-cache -fv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment