Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
19
rated 0 times [  19] [ 0]  / answers: 1 / hits: 5783  / 3 Years ago, thu, september 30, 2021, 8:38:46

When searching in gnome-shell, there are two buttons towards the bottom of the screen which can be used to search with Wikipedia and Google.



Is there any way to customise these? If, say, I wanted to replace the Google button with one for DuckDuckGo, how would I go about this?


More From » gnome

 Answers
2

Gnome-Shell search providers are described by XML files in the folder /usr/share/gnome-shell/search_providers



You will notice two XML files - google.xml and wikipedia.xml



Lets create a new search provider - copy the google.xml file as a template



11.10



sudo cp /usr/share/gnome-shell/search_providers/google.xml /usr/share/gnome-shell/search_providers/duckduckgo.xml


12.04



sudo cp /usr/share/gnome-shell/open-search-providers/google.xml /usr/share/gnome-shell/open-search-providers/duckduckgo.xml


Now lets open the file and change some details to search with duckduckgo:



11.10



sudo nano /usr/share/gnome-shell/search_providers/duckduckgo.xml


12.04



sudo nano /usr/share/gnome-shell/open-search-providers/duckduckgo.xml


Change the following XML tags:



<ShortName>DuckDuckGo</ShortName>
<Description>DuckDuckGo Search</Description>
<Url type="text/html" method="GET" template="http://www.duckduckgo.com/?q={searchTerms}"/>


The only difficult part is finding out how a search engine searches - in duckduckgo I searched for something - you see in the title bar how the search provider adds its search terms



enter image description here



final result



enter image description here



In order to see the changes, you need to restart GNOME Shell by pressing Alt+F2, typing "r" and pressing enter.






Linked Questions:




  1. Is it possible to re-arrange the search providers on the GNOME Shell Activities Overview display?


[#42916] Friday, October 1, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fieldcheon

Total Points: 24
Total Questions: 105
Total Answers: 109

Location: Western Sahara
Member since Tue, Feb 16, 2021
3 Years ago
;