4

I have just installed GoldenDict on Ubuntu 11.04, but the system tray icon is missing. Is there any way to show the GoldenDict system tray on Ubuntu 11.04?

I have tried to 'whitelist' it via dconf-edior : ['JavaEmbeddedFrame', 'Mumble', 'Wine', 'GoldenDict', 'hp-systray'] but it doesn't seem to work.

If it it's impossible to get the system tray icon to show, is there an other dictionary that will let me search for words from the system tray?

Jorge Castro
  • 73,717
Jeppe
  • 43

4 Answers4

4

1.Open a terminal and type this code : gsettings set com.canonical.Unity.Panel systray-whitelist "['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service', 'goldendict']"

2.And then check enable system tray icon: enter image description here

3.Log out and log in.

This worked for me.

Binarylife
  • 16,662
3

You have to whitelist GoldenDict if you want to allow them to access the system tray.

Firstly install dconf-tools from the software center ( or by clicking here) Then Press Alt+F2 and enter dconf-editor and run it.

dconf-editor alt-f2 dialog

Now navigate to Desktop -> Unity -> Panel.

configuration editor (dconf-editor) desktop.unity.panel

Now change the value of systray-whitelist to

['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray', 'scp-dbus-service', 'goldendict']
Lincity
  • 25,749
1

I use Ubuntu 11.04 in classic mode and the NNTPgrab and Skype icons were missing. Took me several days searching for a solution, and finally found this command in terminal:

gconftool –recursive-unset /apps/panel

The system tray and taskbar will disapear, but after reboot everything is back, and minimizing NNTPgrab and closing Skype to an icon in the systemtray worked fine.

Eliah Kagan
  • 119,640
0

On some systems, GoldenDict startup to system tray can fail systematically due to a racing condition. In my case, his happened to on one of five Xubuntu LTS 14.04 systems. The solution is rather easy. Create a ~/bin/sleep-goldendict delayed startup script with the following content:

#!/bin/bash
sleep 30
goldendict
exit

Be sure to make this script executable with chmod +x sleep-goldendict. Finally, change the GoldenDict entry under Application Autostart, making it refer to the full path of the newly created startup script. GoldenDict is a great dictionary application. It would be a pity to miss out on it.

Serge Stroobandt
  • 5,719
  • 1
  • 54
  • 59