14 lines
469 B
Bash
Executable File
14 lines
469 B
Bash
Executable File
# Install the GlassTTY: TrueType VT220 font from github
|
|
|
|
mkdir -p ~/.local/share/fonts/truetype/
|
|
cd ~/.local/share/fonts/truetype/
|
|
|
|
curl -O http://192.168.0.44:3000/matt/glasstty/src/branch/master/Glass_TTY_VT220.ttf
|
|
if [ $? -eq 0 ]; then
|
|
echo "Cloned Glass TTY font from local mirror"
|
|
else
|
|
curl -O https://github.com/svofski/glasstty/blob/master/Glass_TTY_VT220.ttf
|
|
echo "Cloned Glass TTY font from github"
|
|
fi
|
|
|
|
fc-cache -f -v ~/.local/share/fonts/truetype/ |