Skip to content

Instantly share code, notes, and snippets.

@vsobotka
Last active April 6, 2019 16:03
Show Gist options
  • Save vsobotka/ca96178fd36f79dff256b09c1a26f665 to your computer and use it in GitHub Desktop.
Save vsobotka/ca96178fd36f79dff256b09c1a26f665 to your computer and use it in GitHub Desktop.
Install Adobe Source Code Pro fonts on Ubuntu 16.04
# source: https://www.leggiero.uk/post/installing-adobe-source-code-pro-fonts/
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
mv source-code-pro-2.010R-ro-1.030R-it/OTF/*.otf ~/.fonts
rm -r 1.030R-it.zip source-code-pro-2.010R-ro-1.030R-it
fc-cache -f -v
@vsobotka
Copy link
Author

vsobotka commented Apr 6, 2019

mkdir -p ~/.fonts
wget https://github.com/adobe-fonts/source-code-pro/releases/download/variable-fonts/SourceCodeVariable-Italic.otf
wget https://github.com/adobe-fonts/source-code-pro/releases/download/variable-fonts/SourceCodeVariable-Roman.otf
mv SourceCodeVariable-*.otf .fonts/
fc-cache -f -v

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment