LoginSignup
0
1

More than 5 years have passed since last update.

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

Posted at

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

Environments

  • Macbook Air 11inch
  • ubuntu 16.04
  • US Keyboard

How to install fcitx

  • purge ibus
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:

0
1
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
0
1