Set Brave default as default search engine
This commit is contained in:
parent
9623762b5f
commit
4919863dd8
|
@ -644,6 +644,14 @@ completions.cp.callback = (response) => parseCrunchbase(response, (person) => {
|
|||
|
||||
// ****** Search Engines ****** //
|
||||
|
||||
// Brave Search
|
||||
completions.bs = {
|
||||
alias: "bs",
|
||||
name: "bravesearch",
|
||||
search: "https://search.brave.com/search?q=",
|
||||
compl: "https://search.brave.com/api/suggest?q=",
|
||||
}
|
||||
|
||||
// DuckDuckGo
|
||||
completions.dd = {
|
||||
alias: "dd",
|
||||
|
|
2
conf.js
2
conf.js
|
@ -7,7 +7,7 @@ util.addSettings({
|
|||
hintAlign: "left",
|
||||
omnibarSuggestionTimeout: 500,
|
||||
richHintsForKeystroke: 1,
|
||||
defaultSearchEngine: "dd",
|
||||
defaultSearchEngine: "bs",
|
||||
theme: `
|
||||
body {
|
||||
font-family: "DejaVu Sans", DejaVu, Arial, sans-serif;
|
||||
|
|
Loading…
Reference in New Issue