Skip to content

Commit

Permalink
added brave as a search engine (#5)
Browse files Browse the repository at this point in the history
* added brave as a search engine

* fixed typos

* using original query instead of the final one

* fixed typos
  • Loading branch information
Adwait Adhikari authored Mar 12, 2023
1 parent 69c480f commit f1d83df
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Because of the limitations of the CORS policy, macros icons must be stored in `/
- [ ] Macros Menu categories
- [ ] Localisation
- [x] LocalStorage reset buttons
- [ ] Refactor seacrh engines system
- [ ] Refactor search engines system
- [ ] Time settings

## Technologies
Expand Down
22 changes: 21 additions & 1 deletion public/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -712,8 +712,28 @@ const CONFIG = {
template: 'https://www.bing.com/search?q={@}'
}
}
},
brave: {
name: 'Brave',
bgColor: {
type: 'gradient',
gradientType: 'linear',
colors: ['#FB542B', '#343546']
},
textColor: '#e8e8e8',
types: {
query: {
template: 'https://search.brave.com/search?q={$}'
},
calculator: {
template: 'https://search.brave.com/search?q={@}'
},
currency: {
template: 'https://search.brave.com/search?q={@}'
}
}
}
}
}

export default CONFIG
export default CONFIG

0 comments on commit f1d83df

Please sign in to comment.