tyokota.lab

適当に綴ります

Macbook Air 11inch にインストールした ubuntu にてコマンドキーでIMEのオンオフを切り替える

Macbook Air 11inch モデルに ubuntu16..04をインスールして使用しているのですが、コマンドキーでのIMEオンオフに慣れてしまったせいでついつい押してしまいます。そこで、インプットメソッドを変更してMac同様IMEのオンオフを切り替えたいと思います。

Environments

How to install fcitx

sudo apt purge ibus ninja-build ibus-mozc
  • dconf editor
    • desktop > ibus > general
      • delete preload-engin, version
    • org > gnome > desktop > input-sources
      • delete sources
  • remove ibus integlation
gsettings set org.gnome.settings-daemon.plugins.keyboard active false
  • install fcitx
sudo apt install fcitx fcitx-mozc
  • create profile
vim ~/.xprofile
  • contents of profile
export GTK_IM_MODULE=fcitx  
export QT_IM_MODULE=fcitx  
export XMODIFIERS=@im=fcitx  
export DefaultIMModule=fcitx
  • setting startup application fo /usr/bin/fcitx
  • reboot
  • setting shortcut key
    • fcitx configuration (show advance option)
      • Global Config > Active input method > Super_L
      • Global Config > Inactive input method > Super_R
  • setting skin
    • right click to menubar icon > skin > dark

参考URL:

http://archlinux-blogger.blogspot.jp/2016/02/ibus-mozcfcitx-mozc.html