Last active
July 16, 2024 18:57
-
-
Save ajeebkp23/0818e0bd5c375270570f2b2a0cebe069 to your computer and use it in GitHub Desktop.
Install Nerd Font FiraCode on Debian based Linux
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
| sudo apt install -y unp | |
| mkdir /tmp/FiraCode/ | |
| pushd /tmp/FiraCode/ | |
| # https://github.com/ryanoasis/nerd-fonts/releases/ | |
| wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/FiraCode.tar.xz | |
| unp FiraCode.tar.xz | |
| popd | |
| mkdir -p ~/.local/share/fonts/ | |
| mv /tmp/FiraCode ~/.local/share/fonts/ | |
| fc-cache -f -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment