如何在 Dash 菜单中禁用镜头?

如何在 Dash 菜单中禁用镜头?

如何在 Dash 菜单中禁用某些镜头?

答案1

有几种方法可以做到这一点,虽然有人认为对于 ubuntu 来说最简单的事情就是从 dash 内部提供一些易于访问的配置选项,但这只是疯话。

如果您有信心使用终端,那么我推荐选项 1,因为软件中心的行为会产生误导和混淆。

选项 1 - 使用终端(推荐)

  1. 打开终端Ctrl++ShiftT

  2. 要检查当前安装了哪些瞄准镜和镜头,请使用dpkggrep例如列出所有瞄准镜和镜头包

    $ 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-lens-gwibber          ...     Gwibber Lens for unity
    ii  unity-lens-photos           ...     Unity Photos Lens
    ii  unity-lens-shopping         ...     Shopping lens for unity
    

    14.04 版注释

    14.04 拥有比以往更多的镜头和瞄准镜。其中一些不能在不破坏系统的情况下删除,例如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
    
  3. 要移除镜头,请使用apt-get remove。例如移除 Unity 购物镜头:

    sudo apt-get remove --purge unity-lens-shopping 
    

选项 2 - 使用 Ubuntu 软件中心

  1. 打开软件中心并搜索“镜头”。
  2. 通过选择该项目并单击“删除”来卸载。

    重要的!

    • 您必须选择显示(计数)技术项目显示所有已安装的镜头。例如,“购物镜头”是一个技术项目,我个人认为这有点厚颜无耻。你知道,因为你太笨了,不知道那是什么。

    • 不要选择“已安装”,然后搜索“镜头”。这不会达到您的预期效果。它应该列出所有“已安装”的镜头,但是它没有这样做。可能是个 bug。

我建议卸载哪些镜头?

unity-lens-applications除了和 之外的所有功能unity-lens-files。就我个人而言,如果没有 dash,我会更开心。取而代之的是一个简单、直接、没有混乱、尽可能快速的应用程序启动器。我不敢相信我会这么说,但实际上我怀念 Windows 的一些东西。

关于 14.04 的说明unity-scope-home 如果不移除unity-desktop并破坏整个系统,您就无法移除它。

附加信息

答案2

如果您使用的是 Ubuntu 13.04 或更新版本:

sudo apt-get install unity-tweak-tool

在调整工具中您可以使用搜索选项卡来修改相关设置:

  • 取消选中“搜索在线资源”
  • 取消选中“显示更多建议”
  • 取消选中“启用文件搜索”

答案3

在 14.04 版本中无法卸载镜头。

有效的是:

  • 安装 dconf-editor
  • 从 中的字符串中删除范围com -> canonical -> unity -> dash。我只留在那里home.scope
  • 注销,登录,享受。

(从这里


您也可以在不安装 dconf-editor 的情况下执行此操作。根据自己的喜好编辑带双引号的字符串:

$ dconf write /com/canonical/unity/dash/scopes "['home.scope', 'applications.scope', 'files.scope']"

(从这里

答案4

在 Ubuntu 14.04LTS 中

  1. 超级A提出应用范围
  2. 滚动直到看到Dash 插件标头
  3. 如果尚未点击,请点击显示更多结果按钮
  4. 对于要禁用的每个插件,点击它,然后点击禁用

我更喜欢这种方法,因为它不需要超级用户权限,因此不太可能破坏任何东西。

相关内容