How to install all Google fonts to your computer locally
When designing a website even good design softwares like Adobe XD doesn’t come shipped with typical web fonts. This is pain in the ass. Luckily I found a handy script from GitHub that install all Google Fonts to your machine locally. So now all your design software is able to access all fonts in Googles library.
Doing this is really easy. On Mac run following command on your terminal
curl https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/install.sh | sh
If you are a Linux user run this one (Debian based distros)
curl https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/install_debian.sh | sh
If you use Archlinux run this one
curl https://raw.githubusercontent.com/qrpike/Web-Font-Load/master/install_arch.sh | sh
GitHub repo in question is here https://github.com/qrpike/Web-Font-Load