如何以编程方式启用/禁用 Dash 在线结果?

如何以编程方式启用/禁用 Dash 在线结果?

如何从 Bash 脚本更改此设置?

系统设置 ▸ 隐私 ▸ 搜索结果 ▸ 在 Dash 中搜索时:包括在线搜索结果

我的计划是仅在某些网络连接上启用它。

答案1

您可以使用dconf-editor来更改此设置。它位于:

com -> canonical -> unity -> lenses  

并被称为remote-content-search。据我所知,只有两个选项noneall。当设置为 时,all滑块在系统设置中设置为“开”,当设置为 时,none滑块处于“关”位置。

您可以使用 来通过终端更改此设置gsettings

gsettings set com.canonical.Unity.Lenses remote-content-search all  

将在以下情况下开启:

gsettings set com.canonical.Unity.Lenses remote-content-search none

将其设置为“关闭”。

Gsettings 在 Ubuntu 中默认安装,你可以使用以下命令安装 dconf:

sudo apt-get install dconf-tools  

您不需要 dconf 来使用 gsettings。

相关内容