Created
July 9, 2019 06:25
-
-
Save bbtdev/7205a654ade2c63e1b45c9084a99edf4 to your computer and use it in GitHub Desktop.
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
adobe source code pro semibold | |
(made with hidpi install?) | |
install script | |
#!/bin/bash | |
set -euo pipefail | |
I1FS=$'\n\t' | |
mkdir -p /tmp/adodefont | |
cd /tmp/adodefont | |
wget -q --show-progress -O source-code-pro.zip https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip | |
unzip -q source-code-pro.zip -d source-code-pro | |
mkdir -p ~/.fonts | |
cp -v source-code-pro/*/OTF/*.otf ~/.fonts/ | |
fc-cache -f | |
rm -rf source-code-pro{,.zip} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment