Ubuntu – WICD system tray icon doesn’t show up

system-trayunitywicdwireless

I've tried several solutions, all of which do not work:

  • Using dconf to add 'wicd' and 'wicd-client.py' to the whitelist in com > canonical > unity-gtk-module (14.04 does not have unity > desktop > panel).
  • Adding it in "Startup Applications" (in fact, it was already there when I checked)
  • In hopes of getting unity > desktop > panel to appear in dconf-editor, I've tried:

    sudo add-apt-repository ppa:timekiller/unity-systrayfix 
    sudo apt-get update
    sudo apt-get upgrade
    

None of these have worked (I've restarted my computer after all of them).

Does anyone have any suggestions?

Best Answer

For Ubuntu 14.04:

sudo add-apt-repository ppa:gurqn/systray-trusty
sudo apt-get update
sudo apt-get upgrade

For Ubuntu 14.10:

sudo add-apt-repository ppa:gurqn/systray-utopic
sudo apt-get update
sudo apt-get upgrade

Then, restart Unity by pressing Alt+F2 and typing unity or by logging out and back in. The PPA now automatically whitelists all applications so there's no need to manually whitelist individual apps to be able to use the systray.

If you want to revert the changes and go back to the default Unity packages from the Ubuntu repositories, use the commands below to purge the Unity systray whitelist PPA:

For Ubuntu 14.04:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:gurqn/systray-trusty

For Ubuntu 14.10:

sudo apt-get install ppa-purge
sudo ppa-purge ppa:gurqn/systray-utopic

Then, restart Unity or log out and log back in.

Source

Related Question