Created
October 7, 2016 06:44
-
-
Save benishor/bc91b535996a2db3ece7e6dcbee92619 to your computer and use it in GitHub Desktop.
Installs meslo fonts for all users of the system
This file contains hidden or 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
# 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