Skip to content

Instantly share code, notes, and snippets.

@incogbyte
Created February 18, 2022 16:45
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save incogbyte/373f37817742c53891a076391533fe6d to your computer and use it in GitHub Desktop.
Save incogbyte/373f37817742c53891a076391533fe6d to your computer and use it in GitHub Desktop.
Install Meslo Fonts Ubuntu Linux Mint and debians
#!/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