feat: font installer shell
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
9
setup/font.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
install_ttf_font() {
|
||||||
|
sudo cp *.ttf /usr/share/fonts/TTF
|
||||||
|
sudo fc-cache -f -v
|
||||||
|
}
|
||||||
|
|
||||||
|
cd ../host/fonts
|
||||||
|
install_ttf_font
|