-
-
Save thalysonalexr/9b48fa5565c50ca42cece37f30ea95e8 to your computer and use it in GitHub Desktop.
Install Monaco font in Linux
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
#!/bin/bash | |
#script extraido de: http://paulocassiano.wordpress.com/2008/08/29/deixando-o-gedit-com-a-cara-do-textmate/ | |
#tip for better "resolution" here: http://blog.siverti.com.br/2008/05/22/fonte-monaco-no-ubuntugedit/ | |
cd /usr/share/fonts/truetype/ | |
#TODO: put validation if folder already exists | |
sudo mkdir ttf-monaco | |
cd ttf-monaco/ | |
sudo wget http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf | |
#create an index of X font files in a directory | |
sudo mkfontdir | |
#go to parent folder /usr/share/fonts/truetype | |
cd .. | |
fc-cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment