Last active
November 11, 2024 14:54
-
-
Save pitoniak32/88eae117f1bc06edf8eac9042119f1ed to your computer and use it in GitHub Desktop.
install JetBrains Nerd Font on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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