Skip to content

Instantly share code, notes, and snippets.

@ac1dr3d
Created March 17, 2022 07:08
Show Gist options
  • Save ac1dr3d/f0bda8584e6e5fd39c1b5360b4be7a46 to your computer and use it in GitHub Desktop.
Save ac1dr3d/f0bda8584e6e5fd39c1b5360b4be7a46 to your computer and use it in GitHub Desktop.
install-source-code-pro.sh
#!/usr/bin/env bash
cd Downloads
wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip
if [ ! -d "~/.fonts" ] ; then
mkdir ~/.fonts
fi
unzip 1.050R-it.zip
cp source-code-pro-*-it/OTF/*.otf ~/.fonts/
rm -rf source-code-pro*
rm 1.050R-it.zip
cd ~/
fc-cache -f -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment