1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Iconを含む、fontを作る方法。

Posted at

Nerd Font: https://github.com/ryanoasis/nerd-fonts

自分の記事が読みにくいので、単純な記事にしました。

  1. gitがinstallされていない場合は。
    sudo apt install git-all

  2. font forgeがinstallされていない場合は。
    Software Managerなどでinstallする。

  3. patchを当てたいfontを用意する。

  4. Nerd Fonts: configparser module is probably not installed. Try pip install configparser or equivalent
    と出た場合。
    pip install configparser

  5. python2用のpipがinstallされていない場合。
    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    python get-pip.py --user
    でpython2用のpipをinstallする。

1~4-1までOKなら実行。

git clone https://github.com/ryanoasis/nerd-fonts.git\
fontforge -script ~/nerd-fonts-master/font-patcher ~/Downloads/font_font.ttf -c

1つめのpath: font-patcherのscript
2つめのpath: patchを当てたいfont

1
1
0

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?