分类: linux
2011-04-29 17:50:16
在 中,ubuntu 对顶部面板右上角的通知区域(系统托盘)采用了白名单制度,只有支持 indicators 并位于白名单的部分程序才会被显示在系统托盘中,目前支持的程序有: java apps, mumble, wine applications, skype 和 hp-systray 。除些之外的 dropbox ,amule 等大量程序都不会被显示在系统托盘中,不过事实上我们可以通过以下方法来解除这一限制。
- 命令行方式:
解禁所有程序
gsettings set com.canonical.unity.panel systray-whitelist "['all']"
或者只解禁部分程序,把 your_application 替换成你需要解禁的程序。
gsettings set com.canonical.unity.panel systray-whitelist "['javaembeddedframe', 'mumble', 'wine', 'skype', 'hp-systray', 'your_application']"
- gui 方式:
安装 dconf-tools
sudo apt-get install dconf-tools
在终端中输入 dconf-editor ,然后找到 desktop > unity > panel ,把 systray-whitelist 的值改为 ['all'] 。
最后注销并重新登录就可以了。
- 还原:
命令行下用以下命令
gsettings set com.canonical.unity.panel systray-whitelist "['javaembeddedframe', 'mumble', 'wine', 'skype', 'hp-systray']"
gui 下在 dconf-editor 中点击 set to default 按钮。
- 消息