From b8974330577807a6ea03f082a9902e3d042d5201 Mon Sep 17 00:00:00 2001 From: Florian Bennecker <46259262+kyndadumb@users.noreply.github.com> Date: Fri, 6 Feb 2026 08:03:22 +0100 Subject: [PATCH] Search-Widget: Add support for Qwant search engine --- docs/configuration.md | 1 + internal/glance/widget-search.go | 1 + 2 files changed, 2 insertions(+) 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 {