From fa325bd5191fa9e76132aa5210cbc8b037fd05f1 Mon Sep 17 00:00:00 2001 From: stripedew <98356696+stripedew@users.noreply.github.com> Date: Thu, 20 Mar 2025 11:53:59 +0000 Subject: [PATCH 1/3] Update configuration.md Added Kagi --- docs/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/configuration.md b/docs/configuration.md index 40567cd..e4002bf 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1003,6 +1003,7 @@ Either a value from the table below or a URL to a custom search engine. Use `{QU | google | `https://www.google.com/search?q={QUERY}` | | bing | `https://www.bing.com/search?q={QUERY}` | | perplexity | `https://www.perplexity.ai/search?q={QUERY}` | +| kagi | `https://kagi.com/search?q={QUERY}` | ##### `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. From ab1faedadf7e93fb22f909d82aa30486712ed645 Mon Sep 17 00:00:00 2001 From: stripedew <98356696+stripedew@users.noreply.github.com> Date: Thu, 20 Mar 2025 12:01:26 +0000 Subject: [PATCH 2/3] Update widget-search.go --- internal/glance/widget-search.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/glance/widget-search.go b/internal/glance/widget-search.go index 1b95858..4b5fbe3 100644 --- a/internal/glance/widget-search.go +++ b/internal/glance/widget-search.go @@ -35,6 +35,8 @@ var searchEngines = map[string]string{ "google": "https://www.google.com/search?q={QUERY}", "bing": "https://www.bing.com/search?q={QUERY}", "perplexity": "https://www.perplexity.ai/search?q={QUERY}", + "kagi": "https://kagi.com/search?q={QUERY}", + "startpage": "https://www.startpage.com/search?q={QUERY}", } func (widget *searchWidget) initialize() error { From 768f7007198523bdbc22cf24f52336b3a4bd6e5e Mon Sep 17 00:00:00 2001 From: stripedew <98356696+stripedew@users.noreply.github.com> Date: Thu, 20 Mar 2025 12:02:33 +0000 Subject: [PATCH 3/3] Update configuration.md --- docs/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/configuration.md b/docs/configuration.md index e4002bf..6f161a4 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1004,6 +1004,7 @@ Either a value from the table below or a URL to a custom search engine. Use `{QU | bing | `https://www.bing.com/search?q={QUERY}` | | perplexity | `https://www.perplexity.ai/search?q={QUERY}` | | kagi | `https://kagi.com/search?q={QUERY}` | +| startpage | `https://www.startpage.com/search?q={QUERY}` | ##### `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.