Last active
September 10, 2024 04:30
-
-
Save kagaya/48012dfae4199c184811e705d3fe6838 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
管理者権限で | |
/usr/share/ibus/component/skk.xml | |
を開き、 | |
<layout>ja</layout> | |
を | |
<layout>us</layout> | |
に変更し、保存する。 | |
念のために再起動しておく。 | |
/usr/share/ibus/component/mozc.xml を編集すれば、ibus-skk で US配列を使えるようになるかと開くと | |
<component> | |
<name>com.google.IBus.Mozc</name> | |
<description>Mozc Component</description> | |
<exec>/usr/lib/ibus-mozc/ibus-engine-mozc --ibus</exec> | |
<version>2.26.4220.100+dfsg-5.2</version> | |
<author>Google Inc.</author> | |
<license>New BSD</license> | |
<homepage>https://github.com/google/mozc</homepage> | |
<textdomain>ibus-mozc</textdomain> | |
<engines exec="/usr/lib/ibus-mozc/ibus-engine-mozc --xml" /> | |
</component> | |
<!-- Settings of <engines> and <layout> are stored in ibus_config.textproto --> | |
<!-- under the user configuration directory, which is either of: --> | |
<!-- * $XDG_CONFIG_HOME/mozc/ibus_config.textproto --> | |
<!-- * $HOME/.config/mozc/ibus_config.textproto --> | |
<!-- * $HOME/.mozc/ibus_config.textproto --> | |
とあるので、$HOME/.config/mozc/ibus_config.textproto を開いた。 | |
engines { | |
name : "mozc-jp" | |
longname : "Mozc" | |
layout : "us" | |
} | |
ここの layout のところを上のように、us と書き換えた。 | |
これで、us配列でいつも通り入力できるようになった。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment