Skip to content

Instantly share code, notes, and snippets.

@m-rey
Created June 16, 2020 12:02
Show Gist options
  • Save m-rey/a20801b9cd56dc6f51ce09f8ac4029b0 to your computer and use it in GitHub Desktop.
Save m-rey/a20801b9cd56dc6f51ce09f8ac4029b0 to your computer and use it in GitHub Desktop.
script to install Fire Code fonts
#!/bin/sh
mkdir -p ~/.local/share/fonts
cd ~/.local/share/fonts
for type in Bold Light Medium Regular Retina; do
wget -O ~/.local/share/fonts/FiraCode-${type}.ttf "https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-${type}.ttf?raw=true";
done
fc-cache -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment