44

Only GNOME extension and native icons are displayed. Other icons like Dropbox, shutter, enpass etc. do not appear in the top bar.

Am I missing something? I already tried using extensions that I used with GNOME before but nothing (Topicons Plus, Ubuntu appindicators etc.) seems to help.

Currently I'm using Ubuntu Xorg, but in Wayland I have the same issue.

pomsky
  • 70,557
rafrsr
  • 1,346
  • 3
  • 16
  • 26

9 Answers9

67

I've encountered the same problem. I tried to remove the indicator-application-service completely, and see, the problem went away! I guess coming from 16.04 leaves some Unity-related stuff on my machine that is not only obsolete but prevents the AppIndicator extension from properly working.

What to do:

sudo apt remove indicator-application
jokerdino
  • 41,732
enolive
  • 796
30

I have the same problem with 17.10. At least the following command helps here to bring the icons back until the next reboot:

killall indicator-application-service

Edit: This workaround is running fine here without using any gnome-extension like "Topicon-plus" or "Kstatusnotifieritem/appindicator support".

amDude1848
  • 907
  • 10
  • 15
5

As suggested here, try removing all obsolete indicators if any still present

indicator-application
indicator-appmenu
indicator-bluetooth
indicator-common
indicator-datetime
indicator-keyboard
indicator-messages
indicator-network
indicator-power
indicator-printers
indicator-session
indicator-sound
indicator-transfer
indicator-transfer-download-manager

Just execute this command in a terminal:

sudo apt purge indicator-application indicator-appmenu indicator-bluetooth indicator-common indicator-datetime indicator-keyboard indicator-messages indicator-network indicator-power indicator-printers indicator-session indicator-sound indicator-transfer indicator-transfer-download-manager
2

Another possible solution is delete Indicator-application autostart .desktop file. It's installed in

/etc/xdg/autostart/indicator-application.desktop

If you dont want to remove it and sometimes is using Unity 7. This made Indicator-application not start at login.

QkiZ
  • 1,248
  • 2
  • 19
  • 35
1

Nothing from suggested works for Shutter app in Ubuntu 18.04 as libgtk2-appindicator-perl package has been removed from main repo. To enable the Shutter indicator in Ubuntu 18.04 install libappindicator-dev:

libappindicator-dev

and Gtk2::AppIndicator perl extension:

sudo cpan -i Gtk2::AppIndicator

Restart Shutter, its indicator should appear now in system tray.

Bob
  • 2,563
1

In all currently supported versions of Ubuntu open the terminal and type:

sudo apt install indicator-applet-complete 

Indicator-applet is an applet to display information from various applications consistently in the GNOME panel. This instance will load all indicators in a single panel applet.

karel
  • 122,292
  • 133
  • 301
  • 332
1

I'm on 18.04 (upgraded from version 16).

After following other suggestions such as wiping the old indicator-* programs, and installing the "Kstatusnotifieritem extension", my icons returned -yay-

..but they went away every time the laptop went to lock/or was closed for awhile. Which is often.

Everything comes back, but you have to Alt+F2+R every time, which is annoying and also rearranges my bottom bar dock thing, and since I have many terminals open and arranged, you can imagine :x.

Anyway, this post seems to have fixed it.

Removing default ubuntu-appindicators@ubuntu.com from /usr/share/gnome-shell/extensions

aka

sudo rm -r /usr/share/gnome-shell/extensions/ubuntu-appindicators@ubuntu.com

I locked it with Super+L to test it - and my icons did not go away. :D

zx485
  • 2,865
0

A combination of enolive's answer and amDude1848's answer seems to be necessary.

This will fix the problem in the current session:

killall indicator-application-service

And this will prevent the problem from reoccurring:

sudo apt remove indicator-application
bmaupin
  • 5,371
0

Click the nine dots on your dock.

applications icon

At the search field write "tweak". You will see gnome tweak tools:

searching gnome tweak tools

If you don't have it installed you can click it and that will open software center. You can install it from there.

After, run tweaks and go to extensions.

appindicator on tweak tools

Just turn the appindicators on and you will have a working system tray where you can see the dropbox, telegram or other icons.

lapisdecor
  • 1,647
  • 5
  • 19
  • 39