4
3

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.

Chromebookのターミナルで日本語入力

Last updated at Posted at 2019-03-30

フォントをインストールする

「源ノ角ゴシック Code JP」をダウンロードします。
適当なディレクトリに移動し、下記を実行します。

$ curl -OL https://github.com/adobe-fonts/source-han-code-jp/archive/2.011R.tar.gz

次に、展開しフォントディレクトリにコピーします。

$ tar zxvf 2.011R.tar.gz

source-han-code-jp-2.011R」というディレクトリが出来るので、これをフォントディレクトリにコピーします。
root権限が必要なのでsudoを使えるようにしておいてください。

$ sudo cp -a source-han-code-jp-2.011R /etc/share/fonts

NOTOフォントはAPTでインストール出来ます。

# apt install fonts-noto-cjk

fcitx-mozcをインストールする

インプットメソッドのmozcを使うために、fcitx-mozcをインストールします。

# apt install -y fcitx-mozc

systemdの設定を上書きするために、
/etc/systemd/user/cros-garcon.service.d/cros-garcon-override.conf
に下記を追記します。

Environment="GTK_IM_MODULE=fcitx"
Environment="QT_IM_MODULE=fcitx"
Environment="XMODIFIERS=@im=fcitx"

fcitxを起動します。

$ fcitx > /dev/null 2>&1

fcitxにmozcを追加します。

$ fcitx-configtool

自動起動するようにします。

$ fcitx-autostart
4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?