在 gnome-shell 的概览中,有两个搜索按钮,一个是 Google,一个是 Wikipedia。是否可以为 Ask Ubuntu 创建类似的按钮?
答案1
我已经发现fossfreedom 关于在 gnome-shell 中创建 DuckDuckGo 搜索按钮的回答很有用,我已经用它作为回答这个问题的基础。
要创建新的搜索提供程序,请复制google.xml文件作为模板。
11.10
sudo cp /usr/share/gnome-shell/search_providers/google.xml /usr/share/gnome-shell/search_providers/askubuntu.xml
12.04
sudo cp /usr/share/gnome-shell/open-search-providers/google.xml /usr/share/gnome-shell/open-search-providers/askubuntu.xml
更改以下 XML 标记askubuntu.xml文件:
<ShortName>Ask Ubuntu</ShortName>
<Description>Ask Ubuntu Search</Description>
<Url type="text/html" method="GET" template="https://askubuntu.com/?q={searchTerms}"/>
如果您已正确完成所有操作,您应该会在概览中看到询问 Ubuntu 搜索按钮。