Gangmax Blog

Use the 'Source Code Pro' font

From here.

This post describes how to use the “Source Code Pro” font in Ubuntu.

First, you can download the package file by the guidance from here.

Then you can following the commands below:

1
2
3
4
5
6
7
8
#!/bin/bash
mkdir /tmp/adodefont
cd /tmp/adodefont
wget https://github.com/adobe-fonts/source-code-pro/archive/2.010R-ro/1.030R-it.zip
unzip 1.030R-it.zip
mkdir -p ~/.fonts
cp source-code-pro-2.010R-ro-1.030R-it/OTF/*.otf ~/.fonts/
fc-cache -f -v

Comments