Answers:
我发现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
更改askubuntu.xml文件中的以下XML标记:
<ShortName>Ask Ubuntu</ShortName>
<Description>Ask Ubuntu Search</Description>
<Url type="text/html" method="GET" template="/ubuntu//?q={searchTerms}"/>
如果一切正确,您应该会在概述中看到“询问Ubuntu搜索”按钮。
<Url type="text/html" method="GET" template="http://askubuntu.com/search?q={searchTerms}"/>
(改为使用此url字符串,以利用搜索功能!-很好奇,没有人提到它!)