Created
February 18, 2022 16:45
-
-
Save incogbyte/373f37817742c53891a076391533fe6d to your computer and use it in GitHub Desktop.
Install Meslo Fonts Ubuntu Linux Mint and debians
This file contains 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 |
W
👍
W
Thank You
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks