6 lines
167 B
Bash
Executable file
6 lines
167 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p ~/fontstemp
|
|
gpg --decrypt fonts.txz.gpg | tar xJvC ~/fontstemp
|
|
cp ~/fontstemp/fonts/DraftingMono-Regular.ttf ~/.termux/font.ttf
|
|
rm -rf ~/fontstemp
|