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
| #!/bin/sh | |
| # Copy any font (folder name) to the $font variable from here: | |
| # https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts | |
| font=Meslo | |
| fontpath="$HOME/.local/share/fonts" | |
| version="2.3.3" | |
| wget https://github.com/ryanoasis/nerd-fonts/releases/download/v"$version"/$font.zip | |
| mkdir -p "$fontpath" |