Skip to content

Instantly share code, notes, and snippets.

@levhita
Last active January 31, 2016 00:05
Show Gist options
  • Save levhita/426bbdc1d75f527d13e8 to your computer and use it in GitHub Desktop.
Save levhita/426bbdc1d75f527d13e8 to your computer and use it in GitHub Desktop.
# Install Google webfonts on ubuntu
# Install Google webfonts on ubuntu
sudo apt-get -y install git
git clone https://github.com/google/fonts.git web_fonts_temp
mkdir -p ~/.fonts/google-fonts/
find $PWD/web_fonts_temp/ -name "*.ttf" -exec sudo install -m644 {} ~/.fonts/google-fonts/ \; || return 1
fc-cache -f > /dev/null
rm -rf web_fonts_temp
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment