Skip to content

Instantly share code, notes, and snippets.

View skylerwebdev's full-sized avatar

Skyler Dowdy skylerwebdev

  • @lambda-students
  • The Devil's Armpit AKA Florida
View GitHub Profile
@skylerwebdev
skylerwebdev / install-google-fonts.sh
Created February 18, 2020 14:58 — forked from keeferrourke/install-google-fonts.sh
A bash script to install all Google Fonts, system wide, on debian based systems (ex. Ubuntu)
#!/bin/sh
# Written by: Keefer Rourke <https://krourke.org>
# Based on AUR package <https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=ttf-google-fonts-git>
# dependancies: fonts-cantarell, ttf-ubuntu-font-family, git
sudo apt-get install fonts-cantarell, ttf-ubuntu-font-family, git
srcdir="/tmp/google-fonts"
pkgdir="/usr/share/fonts/truetype/google-fonts"
giturl="git://github.com/google/fonts.git"