web-dev-qa-db-ja.com

WICDトレイアイコンが表示されない

WICDをインストールして正常に動作しますが、トレイアイコンが表示されません。 wicd-clientで試しましたが、通知のみが表示されます。

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

さらに、Kubuntuセッションでは、トレイアイコンが通常どおり表示されます。

前もって感謝します。

9
The_Prat
  1. dconf-toolsをインストールしますInstall dconf-tools パッケージしてからdconf-editorを開きます:

    enter image description here

  2. desktop➜unity➜panelに移動し、Wicdsystray-whitelistに追加します。

    enter image description here

  3. ログアウトしてから再度ログインします。パネルにwicdアイコンが表示されます。

    enter image description here

9
Isaiah

Ubuntu 14.10の場合、 指示はこちら に続くと、トップパネルにWICDアイコンが表示されます。

1
Rsync

Ubuntu 12.04の場合、デスクトップ➜ユニティ➜パネルで['All']を使用します(他のすべてを削除します)

私のために働いた:)

1
Thomas Trügler

Ubuntu 11.10の場合、 この記事の内容 11.10のソリューションただし、今すぐ試してください。

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

そして、スクリプトのコード

#!/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

再起動(ログイン/ログアウト)も必要です。

スクリプトは、上記の提案されたソリューションと同じことを行う必要があります...

0
deckoff