4

After I upgraded to Ubuntu 17.10, some icons are missing from the top bar.

For example, I have been using clipit for quite sometime. Previously, once launched, a icon appeared in the top bar allowing one to access the clipboard at the click of a mouse. However, after upgrade to Ubuntu 17.10, the icon is no longer appearing in the top bar.

Clipit is among my applications at startup.

enter image description here

And also, clipit is definitely running.

masroor@masroor-HP-ProDesk-400:~$ ps -axu | grep clipit
masroor   2303  0.2  0.2 583160 23976 tty2     Sl+  07:59   0:22 clipit
masroor   9476  0.0  0.0  14696  1088 pts/1    S+   10:49   0:00 grep --  color=auto clipit

The other icons like language indicators for keyboard are also missing.

Could you please tell me how can I make the icons reappear in my top bar?

pomsky
  • 70,557
Masroor
  • 3,203

2 Answers2

7

The gnome-tweak-tool can be used to make the top icons reappear.

Install gnome-tweak-tool if not already installed.

$ sudo apt-get install gnome-tweak-tool

Launch it (gnome-tweak-tool from command line, Tweaks if from dock).

Select Extensions from the left menu. As we can see, Ubuntu appindicators is turned off. (You may also want to note that Ubuntu dock is turned off as well.)

enter image description here

Turn Ubuntu appindicators on. If you want, you may also turn on Ubuntu dock.

enter image description here

The top icon(s) reappear.

enter image description here

And if you turned on Ubuntu dock, the dock is also permanently displayed at left.

Masroor
  • 3,203
6

In the last few versions of GNOME 3, application icons which use system tray (in particular Clipit icon) used to appear in an auto-hiding tray (called Legacy Tray) at the bottom left corner of the screen. But this feature is completely removed in GNOME shell v3.26 (the one shipped with Ubuntu 17.10) and the icon is invisible by default.

As a workaround you may try using a GNOME shell extension called TopIcons Plus. This extension moves legacy tray icons to the top bar and also provides some more customisations.

If the extension from the GNOME extensions website does not work under GNOME 3.26, try to install manually from the extension's GitHub page.

pomsky
  • 70,557