问题描述
如何在Dash菜单中禁用某些镜头?
最佳回答
有多种方法可以做到这一点,尽管有人会认为ubuntu最简单的方法就是从仪表板内部轻松访问一些配置选项,但这只是疯狂的说法。
如果您有信心使用终端,那么我建议您选择选项1,因为软件中心的行为会引起误解和混乱。
选项1-使用终端(推荐)
-
打开终端
Ctrl
+Shift
+T
-
要检查当前安装了哪些瞄准镜和镜头,请将
dpkg
与grep
结合使用。例如列出所有内窥镜和镜头包$ dpkg -l | egrep "(unity-lens-|unity-scope-)"
关于14.04的说明14.04拥有比以往更多的镜头和内窥镜。其中一些无法删除而不破坏系统,例如
ii unity-lens-applications ... Application lens for unity
ii unity-lens-files ... File lens for unity
ii unity-lens-gwibber ... Gwibber Lens for unity
ii unity-lens-photos ... Unity Photos Lens
ii unity-lens-shopping ... Shopping lens for unity
unity-scope-home
。以下是在14.04中默认安装的一些示波器和镜头:unity-lens-video
大部分可拆除的示波器和镜头已被拆除:
unity-lens-friends
unity-scope-audacious
unity-scope-calculator
unity-scope-chromiumbookmarks
unity-scope-clementine
unity-scope-colourlovers
unity-scope-devhelp
unity-scope-firefoxbookmarks
unity-scope-gdrive
unity-scope-gmusicbrowser
unity-scope-gourmet
unity-scope-guayadeque
unity-scope-home
unity-scope-manpages
unity-scope-musicstores
unity-scope-musique
unity-scope-openclipart
unity-scope-texdoc
unity-scope-tomboy
unity-scope-video-remote
unity-scope-virtualbox
unity-scope-yelp
unity-scope-zotero
$ dpkg -l | egrep "(unity-lens-|unity-scope-)"
ii unity-lens-applications ... Application lens for unity
ii unity-lens-files ... File lens for unity
ii unity-scope-home ... Home scope that aggregates results from multiple scopes
-
要卸下镜头,请使用
apt-get remove
。例如取下统一的购物镜头:sudo apt-get remove --purge unity-lens-shopping
选项2-使用Ubuntu软件中心
-
打开软件中心,然后搜索”lens”。
-
通过选择项目并单击”Remove”进行卸载。重要!
-
您必须选择显示(计数)技术项目才能显示所有已安装的镜头。例如”shopping lens”是一个技术项目,我个人认为这有点厚脸皮。您知道,因为您太笨了,不知道那是什么。
-
不要选择”Installed”,然后搜索”lens”。这没有达到您的预期。它应该列出任何”installed” len,但是不这样做。可能是错误。
-
我建议卸载哪些镜头?
除unity-lens-applications
以及可能的unity-lens-files
以外,所有其他方法均适用。就个人而言,如果没有破折号,我会很高兴。 fast-as-possible是应用程序启动器,它是一个简单,直接,无混乱的方法。我不能相信我要说的是这个,但实际上我对Windows怀念一些东西。
关于14.04的注意事项如果不删除unity-desktop
并破坏整个系统,则不能删除unity-scope-home
。
附加信息
次佳回答
如果您使用的是Ubuntu 13.04或更高版本:
sudo apt-get install unity-tweak-tool
在调整工具中,您可以使用搜索选项卡来修改相关设置:
-
取消选中“搜索在线资源”
-
取消选中“显示更多建议”
-
取消选中“启用文件搜索”
第三种回答
在14.04中,无法卸载镜头。
起作用的是:
-
安装dconf-editor
-
从
com -> canonical -> unity -> dash
中的字符串中删除作用域。我只在这里只留下了home.scope
。 -
注销,登录,享受。
(来自here)
您也可以不安装dconf-editor而这样做。根据需要编辑带双引号的字符串:
$ dconf write /com/canonical/unity/dash/scopes "['home.scope', 'applications.scope', 'files.scope']"
(来自here)
参考资料