Skip to content

Instantly share code, notes, and snippets.

@r9y9
Created August 11, 2013 07:22
Show Gist options
  • Save r9y9/6203852 to your computer and use it in GitHub Desktop.
Save r9y9/6203852 to your computer and use it in GitHub Desktop.
Roboto install script
#!/bin/bash
function install_roboto() {
mkdir roboto
wget -O roboto/roboto.zip "https://developer.android.com/downloads/design/Roboto_Hinted_20120823.zip"
unzip roboto/roboto.zip -d roboto/
mv -vf roboto/*.ttf ~/.fonts
rm -vrf roboto
}
install_roboto
fc-cache -fv ~/.fonts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment