📑
Ubuntu 20.04 に Cica フォントをインストールする
パッケージにはなっていないので手動でコピーするだけ。
環境
$ lsb_release -a
LSB Version: core-11.1.0ubuntu2-noarch:security-11.1.0ubuntu2-noarch
Distributor ID: Ubuntu
Description: Ubuntu 20.04.1 LTS
Release: 20.04
Codename: focal
手順
現時点 2021-01-05 での最新 v5.0.2 を使う。
$ curl -L -O https://github.com/miiton/Cica/releases/download/v5.0.2/Cica_v5.0.2_with_emoji.zip
$ unzip Cica_v5.0.2_with_emoji.zip
$ sudo mkdir /usr/share/fonts/truetype/cica
$ sudo cp *.ttf /usr/share/fonts/truetype/cica/
$ sudo fc-cache -vf
$ fc-list | grep -i cica
/usr/share/fonts/truetype/cica/Cica-BoldItalic.ttf: Cica:style=Bold Italic
/usr/share/fonts/truetype/cica/Cica-RegularItalic.ttf: Cica:style=Italic
/usr/share/fonts/truetype/cica/Cica-Bold.ttf: Cica:style=Bold
/usr/share/fonts/truetype/cica/Cica-Regular.ttf: Cica:style=Regular
GNOME 端末のフォントに設定する
GNOME 端末のフォントに Cica が表示されないので手動で設定する。
$ gsettings get org.gnome.Terminal.ProfilesList list
['b1dcc9dd-5262-4d8d-a863-c897e6d979b9']
$ gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9/ font "Cica 12"
Discussion