5

Viber Tray Icon located at the top disappeared after upgrading from Viber 16.? to Viber 18.2. This happened in ubuntu 20.04 and also 22.04.

viber installed by downloading the deb package from viber.com and using the command "sudo dpkg -i viber.deb".

The Viber Tray Icon is useful to indicate new messages when the viber window is hidden or minimized. It is also used to quit/exit the viber program properly.

Other than this, viber 18.2 seems to work properly in ubuntu 20.04 and 22.04.

Any help to recover the tray icon?

rtochip
  • 51
  • Have been in contact with Viber support about this, but there is no meaningful answer, apart from "reinstall viber and restart your computer", yet. – drupov Sep 27 '22 at 13:26
  • just downloaded and installed viber 20.3.0.1 and the icon works as expected. – rtochip Jul 04 '23 at 13:10

1 Answers1

0

I resolved it with a fix explained in the link below, although needed to install dbus-x11 as dbus-launch was missing:

Viber indicator not working

Edit Viber desktop launcher, it lives in

/home/YOUR_NAME/.local/share/applications/viber.desktop

change

[Desktop Entry]
Version=1.0
Type=Application
Name=Viber
Comment=Viber VoIP and messenger
Icon=/usr/share/pixmaps/viber.png
Exec=/opt/viber/Viber
NoDisplay=false
Categories=Application;Network;
StartupNotify=false
Terminal=false

to

[Desktop Entry]
Version=1.0
Type=Application
Name=Viber
Comment=Viber VoIP and messenger
Icon=/usr/share/pixmaps/viber.png
Exec=dbus-launch /opt/viber/Viber
NoDisplay=false
Categories=Application;Network;
StartupNotify=false
Terminal=false
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review – David Mar 24 '23 at 11:55
  • Good Day, dbus-x11 is already installed. I tried running on the command line 'dbus-launch /opt/viber/Viber' but icon still does not show up. Perhaps I am missing something else on the steps to resolve this issue? – rtochip Mar 25 '23 at 00:13