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
  • 68,507
Masroor
  • 3,143

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,143
  • I reckon as you upgraded to 17.10 from an earlier release, Ubuntu Dock and AppIndicators were disabled. Those two if I'm not mistaken are activated by default in a fresh installation of Ubuntu 17.10. Also according to some reports AppIndicators fails to show indicators of some electron based applications like Skype, Slack etc. – pomsky Oct 15 '17 at 00:52
  • @pomsky About the first point, yes, you are right. I upgraded from an earlier release. About the second point, this happened in all three of my machines. I don't remember explicitly disabling these, rather they were always visible. So, I can not make any comment whether you are right or wrong. But again, may be I am missing something. – Masroor Oct 15 '17 at 02:25
  • Anyway I'm glad there's a simple solution like this. I'm pretty sure this is going to help many people who will upgrade to 17.10. – pomsky Oct 15 '17 at 02:30
  • @pomsky Thanks! That explains why it doesn't show Discord or Chrome. – Nonny Moose Jan 22 '18 at 00:19
5

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
  • 68,507