Skip to content

Instantly share code, notes, and snippets.

@benishor
Created October 7, 2016 06:44
Show Gist options
  • Save benishor/bc91b535996a2db3ece7e6dcbee92619 to your computer and use it in GitHub Desktop.
Save benishor/bc91b535996a2db3ece7e6dcbee92619 to your computer and use it in GitHub Desktop.
Installs meslo fonts for all users of the system
# acquire fonts
cd ~/Downloads
wget https://github.com/andreberg/Meslo-Font/raw/master/dist/v1.2.1/Meslo%20LG%20DZ%20v1.2.1.zip
unzip Meslo\ LG\ DZ\ v1.2.1.zip
cd Meslo\ LG\ DZ\ v1.2.1
# install for all users
sudo mkdir /usr/share/fonts/truetype/meslo
sudo cp *.ttf /usr/share/fonts/truetype/meslo/
sudo fc-cache -f -v
# cleanup
rm -rf Meslo\ LG\ DZ\ v1.2.1
rm Meslo\ LG\ DZ\ v1.2.1.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment