diff options
author | Sisiutl <sisiutl@egregore.fun> | 2024-11-07 05:55:28 +0100 |
---|---|---|
committer | Sisiutl <sisiutl@egregore.fun> | 2024-11-07 05:55:43 +0100 |
commit | 23793da2a16368f2ba2d70a2b2f9ab372470e60d (patch) | |
tree | 5cf0682568088d50aaee16e544d9a27aa5a7d68a /sigils | |
parent | ee723305b6a381f4ffff1a7e10ea08fc57c96d11 (diff) |
palemoon: swap the search engines removals
Diffstat (limited to 'sigils')
-rw-r--r-- | sigils/packages/palemoon.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sigils/packages/palemoon.scm b/sigils/packages/palemoon.scm index f435534..442a40d 100644 --- a/sigils/packages/palemoon.scm +++ b/sigils/packages/palemoon.scm @@ -290,11 +290,12 @@ (add-after 'remove-spyware-home-page 'remove-spyware-search-engine (lambda _ ;; No tracking in the parameters. - (substitute* '("basilisk/locales/searchplugins/duckduckgo-palemoon.xml" - "basilisk/locales/searchplugins/mojeek.xml") + (substitute* '("palemoon/locales/en-US/searchplugins/duckduckgo-palemoon.xml" + "palemoon/locales/en-US/searchplugins/mojeek.xml") ((".*value=\"palemoon\".*") "")) - (substitute* "basilisk/locales/searchplugins/ekoru.xml" - (("ext=palemoon&") "")))) + (substitute* '("palemoon/locales/en-US/searchplugins/answers.xml" + "palemoon/locales/en-US/searchplugins/ekoru.xml") + (("(client|ext)=palemoon&") "")))) (add-after 'install-branding 'install-desktop-file (lambda* (#:key outputs #:allow-other-keys) (install-file #$(format #f "~a/branding/official/~a.desktop" name name) @@ -360,12 +361,11 @@ from the Basilisk repository.") (add-after 'remove-spyware-home-page 'remove-spyware-search-engine (lambda _ ;; No tracking in the parameters. - (substitute* '("palemoon/locales/en-US/searchplugins/duckduckgo-palemoon.xml" - "palemoon/locales/en-US/searchplugins/mojeek.xml") + (substitute* '("basilisk/locales/searchplugins/duckduckgo-palemoon.xml" + "basilisk/locales/searchplugins/mojeek.xml") ((".*value=\"palemoon\".*") "")) - (substitute* '("palemoon/locales/en-US/searchplugins/answers.xml" - "palemoon/locales/en-US/searchplugins/ekoru.xml") - (("(client|ext)=palemoon&") "")))))))) + (substitute* "basilisk/locales/searchplugins/ekoru.xml" + (("ext=palemoon&") "")))))))) (home-page "https://www.basilisk-browser.org/") (synopsis "A XUL-based web-browser built on top of the Unified XUL Platform (UXP). This browser is a close twin to pre-Servo Firefox in how it operates.") |