diff options
Diffstat (limited to 'fonts/update.sh')
-rwxr-xr-x | fonts/update.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fonts/update.sh b/fonts/update.sh new file mode 100755 index 0000000..02dcbee --- /dev/null +++ b/fonts/update.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +set -e +cd fonts +url='https://fonts.google.com/download?family=Lato|Caveat|Noto%20Color%20Emoji|Noto%20Colr%20Emoji%20Glyf' +tmp=$(mktemp) +curl "$url" > "$tmp" +unzip -uo "$tmp" +rm "$tmp" |