Skip to content

Instantly share code, notes, and snippets.

@vince06fr
Forked from matthewjberger/instructions.md
Created July 7, 2020 16:27
Show Gist options
  • Save vince06fr/deee95bdf84332ed5c9f25c1e395e2fe to your computer and use it in GitHub Desktop.
Save vince06fr/deee95bdf84332ed5c9f25c1e395e2fe to your computer and use it in GitHub Desktop.
Install a nerd font on ubuntu

1.) Download a Nerd Font

2.) Unzip and copy to ~/.fonts

3.) Run the command fc-cache -fv to manually rebuild the font cache

@vince06fr
Copy link
Author

#/bin/bash
# install DroidSansMono Nerd Font --> u can choose another at: https://www.nerdfonts.com/font-downloads
echo "[-] Download fonts [-]"
echo "https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/DroidSansMono.zip"
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/DroidSansMono.zip
unzip DroidSansMono.zip -d ~/.fonts
fc-cache -fv
echo "done!"

on newer versions of ubuntu according to: https://askubuntu.com/questions/3697/how-do-i-install-fonts?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

@vince06fr
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment