Skip to content

Instantly share code, notes, and snippets.

@gruentee
Forked from incogbyte/fonts.sh
Last active April 27, 2023 16:15
Show Gist options
  • Save gruentee/ef9429611115c06934a722ec6da9de8e to your computer and use it in GitHub Desktop.
Save gruentee/ef9429611115c06934a722ec6da9de8e to your computer and use it in GitHub Desktop.
Install Meslo Fonts Ubuntu Linux Mint and debians
#!/bin/bash
NERDFONT_VERSION=2.3.3
sudo apt install fontconfig
cd ~
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v${NERDFONT_VERSION}/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