https://astherier.com/blog/2020/08/install-fcitx-mozc-on-wsl2-ubuntu2004/
こちらを参考に。ありがたや。
sudo apt -y install language-pack-ja
wsl.exe --shutdown
# 起動し直す
sudo update-locale LANG=ja_JP.UTF8
sudo apt install -y fcitx-mozc dbus-x11
wsl.exe --shutdown
# 起動し直す
cat << 'EOS' | sudo tee -a ~/.profile
#Added by https://astherier.com/blog/2020/08/install-fcitx-mozc-on-wsl2-ubuntu2004/
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx
export DefaultIMModule=fcitx
if [ $SHLVL = 1 ] ; then
(fcitx-autostart > /dev/null 2>&1 &)
xset -r 49 > /dev/null 2>&1
fi
#end
EOS
wsl.exe --shutdown
# 起動し直す
fcitx-config-gtk3
# 設定する
sudo apt install lxterminal
lxterminal
# ターミナルで動作確認
コメント