如何在gnome-shell中创建Ask Ubuntu搜索按钮?


14

在gnome-shell的概述中,有两个Google和Wikipedia搜索按钮。是否可以为Ask Ubuntu创建类似的按钮?

Answers:


7

我发现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搜索”按钮。

在此处输入图片说明


2
<Url type="text/html" method="GET" template="http://askubuntu.com/search?q={searchTerms}"/>(改为使用此url字符串,以利用搜索功能!-很好奇,没有人提到它!)
v2r 2012年

@ v2r确实很好。如您所述更改了URL。谢谢!
jokerdino

不客气的jokerdino!
v2r 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.