diff --git a/docs/configuration.md b/docs/configuration.md index c42b04d9a..ca710793f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1245,6 +1245,7 @@ Either a value from the table below or a URL to a custom search engine. Use `{QU | perplexity | `https://www.perplexity.ai/search?q={QUERY}` | | kagi | `https://kagi.com/search?q={QUERY}` | | startpage | `https://www.startpage.com/search?q={QUERY}` | +| qwant | `https://www.qwant.com/?q={QUERY}&t=web`| ##### `new-tab` When set to `true`, swaps the shortcuts for showing results in the same or new tab, defaulting to showing results in a new tab. diff --git a/internal/glance/widget-search.go b/internal/glance/widget-search.go index 66a4cfd1d..cd9a97772 100644 --- a/internal/glance/widget-search.go +++ b/internal/glance/widget-search.go @@ -39,6 +39,7 @@ var searchEngines = map[string]string{ "perplexity": "https://www.perplexity.ai/search?q={QUERY}", "kagi": "https://kagi.com/search?q={QUERY}", "startpage": "https://www.startpage.com/search?q={QUERY}", + "qwant": "https://www.qwant.com/?q={QUERY}&t=web", } func (widget *searchWidget) initialize() error {