Skip to content

Instantly share code, notes, and snippets.

@ee08b397
Forked from veggiemonk/install_font_scp.sh
Created November 29, 2017 14:56
Show Gist options
  • Save ee08b397/ffd775ad9498126d6f5e1cc3959a4fba to your computer and use it in GitHub Desktop.
Save ee08b397/ffd775ad9498126d6f5e1cc3959a4fba to your computer and use it in GitHub Desktop.
install source code pro font in Ubuntu 14.04.2
#!/bin/sh
echo "installing fonts at $PWD to ~/.fonts/"
mkdir -p ~/.fonts/adobe-fonts/source-code-pro
git clone https://github.com/adobe-fonts/source-code-pro.git ~/.fonts/adobe-fonts/source-code-pro
# find ~/.fonts/ -iname '*.ttf' -exec echo \{\} \;
fc-cache -f -v ~/.fonts/adobe-fonts/source-code-pro
echo "finished installing"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment