Fonts: Difference between revisions

From miki
Jump to navigation Jump to search
 
No edit summary
Line 21: Line 21:
sudo fc-cache -f -v
sudo fc-cache -f -v
</source>
</source>

== Nice Fonts ==
=== Monospace ===
* BitStream Vera Sans Mono<br/>''Used to be my favorite monospace''
* [http://dejavu-fonts.org/wiki/Main_Page DejaVu] &mdash; Based on BitStream Vera, but with better Unicode support.
* Lucida Console<br/>''My new favorite, got from MacBuntu 10.04 theme''
* [http://blogs.adobe.com/typblography/2012/09/source-code-pro.html Source Code Pro]

Revision as of 12:28, 26 September 2012

Installing Fonts on Ubuntu

  • References

Fonts are kept in different locations, as defined in /etc/fonts/fonts.conf. By default these are:

  • /usr/share/fonts
  • /usr/local/share/fonts
  • /home/username/.fonts

To install a new font, copy the font to the relevant directory (or a sub-directory), and update the cache with

sudo fc-cache -f -v

Alternatively the cache is immediately refreshed after reboot.

For instance to install Arial Unicode MS (ARIALUNI.TTF, can be found on Windows XP for instance):

sudo mkdir /usr/share/fonts/truetype/windows
sudo cp ARIALUNI.TTF /usr/share/fonts/truetype/windows
sudo chmod 644 /usr/share/fonts/truetype/windows/*
sudo fc-cache -f -v

Nice Fonts

Monospace

  • BitStream Vera Sans Mono
    Used to be my favorite monospace
  • DejaVu — Based on BitStream Vera, but with better Unicode support.
  • Lucida Console
    My new favorite, got from MacBuntu 10.04 theme
  • Source Code Pro