Last active
June 16, 2021 11:37
-
-
Save teppeis/ca2480865f051f6300fc to your computer and use it in GitHub Desktop.
Install Ricty font for Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt-get install fontforge fonts-inconsolata | |
mkdir -p ~/.fonts | |
TMPDIR=$(mktemp -d /tmp/ricty-XXXXX) | |
cd $TMPDIR | |
wget http://iij.dl.sourceforge.jp/mix-mplus-ipa/59022/migu-1m-20130617.zip | |
unzip migu-1m-*.zip | |
cp migu-1m-*/*.ttf ~/.fonts/ | |
git clone git://github.com/yascentur/Ricty.git | |
cd Ricty | |
sh ricty_generator.sh auto | |
cp *.ttf ~/.fonts/ | |
rm -rf $TMPDIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment