Skip to content

Instantly share code, notes, and snippets.

@teppeis
Last active June 16, 2021 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teppeis/ca2480865f051f6300fc to your computer and use it in GitHub Desktop.
Save teppeis/ca2480865f051f6300fc to your computer and use it in GitHub Desktop.
Install Ricty font for Ubuntu
#!/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