From 7431913881ce224fcedd6c48d89d9c48f909f7bb Mon Sep 17 00:00:00 2001 From: mustard Date: Tue, 9 Dec 2025 20:10:01 +0100 Subject: [PATCH] feat: add ddg as default in arkenfox --- .../lib64/firefox/distribution/policies.json | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/roles/arkenfox/files/usr/lib64/firefox/distribution/policies.json b/roles/arkenfox/files/usr/lib64/firefox/distribution/policies.json index a026e03..0259985 100644 --- a/roles/arkenfox/files/usr/lib64/firefox/distribution/policies.json +++ b/roles/arkenfox/files/usr/lib64/firefox/distribution/policies.json @@ -58,5 +58,40 @@ "FeatureRecommendations": false, "SkipOnboarding": false } - } + }, + + "SearchEngines": { + "Add": [ + { + "Name": "DuckDuckGo Lite", + "Alias": "dl", + "Description": "Minimal, ad-free version of DuckDuckGo", + "IconURL": "https://start.duckduckgo.com/static-assets/favicons/DDG-icon_256x256.png", + "Method": "POST", + "PostData": "q={searchTerms}", + "SuggestURLTemplate": "https://start.duckduckgo.com/ac/?q={searchTerms}&type=list", + "URLTemplate": "https://duckduckgo.com/lite/?q={searchTerms}&atb" + }, + { + "Name": "DuckDuckGo No AI", + "Alias": "dnai", + "Description": "DuckDuckGo AIless version", + "IconURL": "https://noai.duckduckgo.com/static-assets/favicons/DDG-icon_256x256.png", + "Method": "GET", + "SuggestURLTemplate": "https://noai.duckduckgo.com/ac/?q={searchTerms}&type=list", + "URLTemplate": "https://noai.duckduckgo.com/?q={searchTerms}&atb" + }, + { + "Name": "DuckDuckGo Start", + "Alias": "d", + "Description": "DuckDuckGo Start page version", + "IconURL": "https://start.duckduckgo.com/static-assets/favicons/DDG-icon_256x256.png", + "Method": "GET", + "SuggestURLTemplate": "https://start.duckduckgo.com/ac/?q={searchTerms}&type=list", + "URLTemplate": "https://start.duckduckgo.com/?q={searchTerms}&atb" + } + ], + "Default": "DuckDuckGo No AI" + }, + "SearchSuggestEnabled": false }