mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2024-11-16 18:10:50 +01:00
7 lines
160 B
Bash
7 lines
160 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
TARGET=~/.fonts
|
||
|
mkdir -p $TARGET
|
||
|
unzip -o -d "$TARGET/roboto_mono" "./fonts/Roboto_Mono.zip"
|
||
|
unzip -o -d "$TARGET/open_sans" "./fonts/Open_Sans.zip"
|