Skip to content

Instantly share code, notes, and snippets.

@jaredtconnor
Forked from incogbyte/fonts.sh
Created May 15, 2023 03:28
Show Gist options
  • Select an option

  • Save jaredtconnor/251f224652f64fcfda15fbe82b4c1041 to your computer and use it in GitHub Desktop.

Select an option

Save jaredtconnor/251f224652f64fcfda15fbe82b4c1041 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