4

I'm using Ubuntu 15.10 64bit. Recently I have installed an input-method in the internet which is (Robo-iBus). I depicted figure below, icon bogo above English (US). Later, I removed it from my machine but its icon in system tray is still there and I can switch from default method to it.

enter image description here

I have checked and removed in /usr/share/ibus. Also, I have check dconf-editor to find tray-whitelist but it may be removed (refer from How to add a Skype indicator?)

Edited: follow @A.B.'s comment below: ouput of gsettings get org.gnome.desktop.input-sources sources is [('ibus', 'bogo'), ('xkb', 'us')]

My question is could you please give me any advice to remove it completely.

Bryan
  • 200

1 Answers1

1

Because you said, the command

gsettings get org.gnome.desktop.input-sources source

gives you

[('ibus', 'bogo'), ('xkb', 'us')]

you have to correct the settings with the command

gsettings set org.gnome.desktop.input-sources sources "[('xkb', 'us')]"

Maybe you have to restart Unity.

A.B.
  • 90,397