您现在的位置是:网站首页> 编程资料编程资料
如何解决Ubuntu 13.04系统托盘无法显示QQ的问题_Ubuntu/Debian_操作系统_
2023-03-28
744人已围观
简介 如何解决Ubuntu 13.04系统托盘无法显示QQ的问题_Ubuntu/Debian_操作系统_
对于Ubuntu Unity 下找回系统托盘,只需要将程序纳入白名单中即可。
但是在Ubuntu 13.04 中,原本的方法行不通,因为配置文件中没有
com.canonical.Unity.Panel 选项。
这个时候,需要把这个选项重新激活,使用下面的PPA即可:
sudo add-apt-repository ppa:timekiller/unity-systrayfix
sudo apt-get update
sudo apt-get upgrade
完成之后,注销或者重启。
然后就可以按照以前的方法设置白名单了(下面是设置全部):
gsettings set com.canonical.Unity.Panel systray-whitelist "['all']"
Ubuntu Unity 下无法显示QQ、Pidgin 等系统托盘的图标的解决方法
这是由于在Unity中,Ubuntu对系统托盘采取了白名单机制,只有在白名单内的程序才能在系统托盘处显示图标。
如果你想所有的程序都可以显示,则在终端运行下面命令:
gsettings set com.canonical.Unity.Panel systray-whitelist "['all']"
若你想自定义程序的话,运行下面的命令(YOUR_APPLICATION是程序名):
gsettings set com.canonical.Unity.Panel systray-whitelist “['JavaEmbeddedFrame', 'Mumble', 'Wine', 'YOUR_APPLICATION']“
还原到系统默认状态:
gsettings set com.canonical.Unity.Panel systray-whitelist "['JavaEmbeddedFrame', 'Mumble', 'Wine', 'Skype', 'hp-systray']"
Ubuntu 13.04 下默认没有com.canonical.Unity.Panel 选项,需要安装:
sudo add-apt-repository ppa:timekiller/unity-systrayfix
sudo apt-get update
sudo apt-get upgrade
成功后再执行上诉方法即可。
相关内容
- ubuntu vsftpd匿名用户上传下载的配置方法_Ubuntu/Debian_操作系统_
- Ubuntu关闭按钮移到右上角的设置方法_Ubuntu/Debian_操作系统_
- Ubuntu Server下配置UTF-8中文/英文环境的方法_Ubuntu/Debian_操作系统_
- 关于ubuntu sudo及root登录等相关资料_Ubuntu/Debian_操作系统_
- ubuntu不能设置高分辨率问题的解决方法_Ubuntu/Debian_操作系统_
- Linux/Ubuntu sudo不用输入密码的方法_Ubuntu/Debian_操作系统_
- ubuntu xrandr修改显示器分辨率(临时效果)_Ubuntu/Debian_操作系统_
- ubuntu系统中文件和内容查找命令小结_Ubuntu/Debian_操作系统_
- ubuntu无法解析亚马逊的DNS具体解决步骤_Ubuntu/Debian_操作系统_
- ubuntu创建桌面快捷方式具体步骤_Ubuntu/Debian_操作系统_
