Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I installed WICD and it works fine, but the tray icon doesn't show. I've tried with wicd-client but only a notification shows up.

root@prat-VGN-NR21M-S:~# wicd-client
Has notifications support True
rename failed
Loading...
Connecting to daemon...
Connected.
displaytray True
Done loading.

In addition, under Kubuntu session the tray icon shows normally.

Thanks in advance.

share|improve this question

3 Answers

up vote 8 down vote accepted
  1. Install the dconf-toolsInstall dconf-tools package and then open dconf Editor:

    enter image description here

  2. Navigate to desktop ➜ unity ➜ panel and add 'Wicd' to systray-whitelist :

    enter image description here

  3. Log out and then back in. You should see the wicd icon the panel:

    enter image description here

share|improve this answer
Thank you, it worked great! – The_Prat Oct 19 '11 at 2:12
1  
every day we have these questions. unity needs redesign, hiding stuff is really nonsense for me. – giowck Jan 2 '12 at 22:31
3  
This answer did not work on 11.10 Unity. dconf changes are discarded and the default is used after logoff/logon – keepitsimpleengineer Jan 6 '12 at 0:42
Anyone know if 12.04 is different? – Tarrasch Aug 22 '12 at 21:39

For Ubuntu 11.10 , this article claims that has a solution for 11.10. Cant try it now, though< br/> enter link description here

wget http://www.pc-freak.net/files/add-wicd-to-whitelist.sh
sh add-wicd-to-whitelist.sh

And the code of the script

#!/bin/bash

TEMPFILE="/tmp/whitelist.temp"

rm -f $TEMPFILE
gsettings get com.canonical.Unity.Panel systray-whitelist | head -c -2 > $TEMPFILE
echo -n ", 'Wicd']" >> $TEMPFILE
gsettings set com.canonical.Unity.Panel systray-whitelist "`cat $TEMPFILE`"
rm -f $TEMPFILE

A restart (login/out) is required, too.

The script should do the same thing that the proposed solution above does...

share|improve this answer
1  
The script indeed does the same thing, it adds Wicd to the white-list. But there is still no 'Wicd; icon in the system notification area. – keepitsimpleengineer Jan 16 '12 at 18:41

For Ubuntu 12.04 use ['All'] in desktop ➜ unity ➜ panel (delete all others)

worked for me :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.