-
-
Save jaredtconnor/251f224652f64fcfda15fbe82b4c1041 to your computer and use it in GitHub Desktop.
Install Meslo Fonts Ubuntu Linux Mint and debians
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/bash | |
| sudo apt install fontconfig | |
| cd ~ | |
| wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Meslo.zip | |
| mkdir -p .local/share/fonts | |
| unzip Meslo.zip -d .local/share/fonts | |
| cd .local/share/fonts | |
| rm *Windows* | |
| cd ~ | |
| rm Meslo.zip | |
| fc-cache -fv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment