Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save haroldoramirez/22e4261c161ea4c4f22630cbeae92afd to your computer and use it in GitHub Desktop.
Save haroldoramirez/22e4261c161ea4c4f22630cbeae92afd to your computer and use it in GitHub Desktop.
Install Monaco font in Linux
#!/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