mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 04:08:30 -05:00
12 lines
729 B
Bash
Executable File
12 lines
729 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl -fL https://dtinth.github.io/comic-mono-font/ComicMono.ttf -o ~/.local/share/fonts/Comic/ComicMono.ttf
|
|
curl -fL https://dtinth.github.io/comic-mono-font/ComicMono-Bold.ttf -o ~/.local/share/fonts/Comic/ComicMono-Bold.ttf
|
|
curl -fL https://github.com/shannpersand/comic-shanns/raw/master/v2/comic%20shanns%202.ttf ~/.local/share/fonts/Comic/comic_shanns_2.ttf
|
|
|
|
curl -fL https://fontlibrary.org/assets/downloads/comic-relief/45c456b6db2aaf2f7f69ac66b5ac7239/comic-relief.zip -o comic-relief.zip
|
|
unzip comic-relief.zip
|
|
mv -fv ComicRelief.ttf ~/.local/share/fonts/Comic/ComicRelief.ttf
|
|
mv -fv ComicRelief-Bold.ttf ~/.local/share/fonts/Comic/ComicRelief-Bold.ttf
|
|
rm -fv comic-relief.zip FONTLOG.txt OFL-FAQ.txt OFL.txt
|