LoginSignup
7

More than 5 years have passed since last update.

MacにRictyフォントを一発で入れたい

Last updated at Posted at 2016-07-16

Rictyのinstall

Rictyインストーラのダウンロード

git clone https://github.com/metalefty/Ricty.git

miguフォントダウンロード

curl -L   -o  'migu-1m-20130617.zip'  'http://sourceforge.jp/frs/redir.php?m=iij&f=%2Fmix-mplus-ipa%2F59022%2Fmigu-1m-20130617.zip' && unzip migu-1m-20130617.zip

Inconsolataのダウンロード

curl   http://levien.com/type/myfonts/Inconsolata.otf > Inconsolata.otf

Rictyインストーラの実行

sh ricty_generator.sh auto

上記をまとめたインストールスクリプト

ricty_installer.sh
mkdir tmp && cd tmp
brew install fontforge
git clone https://github.com/metalefty/Ricty.git
cd Ricty
curl -L   -o  'migu-1m-20130617.zip'  'http://sourceforge.jp/frs/redir.php?m=iij&f=%2Fmix-mplus-ipa%2F59022%2Fmigu-1m-20130617.zip' && unzip migu-1m-20130617.zip
curl   http://levien.com/type/myfonts/Inconsolata.otf > Inconsolata.otf
sh ricty_generator.sh auto
mv *.ttf /Library/Fonts/

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7