Roo*_*79x 11 indicator ubuntu-one
我一直试图找到一种方法来从指标面板中删除 Ubuntu One 条目。
我已经从ubuntuone
文件中删除/usr/share/indicators/applications
并编辑了它seendb.keyfile
,~/cache/indicators/messages/
但它一直在返回。
我只是想让它消失,因为我根本不需要它。
我该怎么做?我有 Ubuntu Natty amd64。
hto*_*que 10
如果您不想将菜单项列入黑名单,而是完全想摆脱 Ubuntu One,请删除以下软件包:
sudo apt-get purge ubuntuone-client python-ubuntuone-client python-ubuntuone-storageprotocol
Run Code Online (Sandbox Code Playgroud)
注销并再次登录后,Ubuntu One(和菜单项)应该消失了。
使用终端并创建目录
mkdir -p ~/.config/indicators/messages/applications-blacklist/
此处的文件应该是 .desktop 文件的路径,这些文件将在启动时被黑化。有问题的 .desktop 文件位于
/usr/share/indicators/messages/applications
所以你可以从那里创建符号链接到这个目录。因此
ln -s /usr/share/indicators/messages/applications/menuItem ~/.config/indicators/messages/applications-blacklist/menuItem
将从menuItem
消息菜单中删除。跑
ls /usr/share/indicators/messages/applications
查看 .desktop 文件的名称并查找提及 Ubuntu One 的文件。
你可以跑
killall gnome-panel
立即查看更改。否则,注销也应该有效。