diff --git a/Common-Overrides.md b/Common-Overrides.md index d4cec5c..259c60d 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -148,7 +148,7 @@ user_pref("browser.newtabpage.activity-stream.showWeather", true); ### Search settings #### Allow search engine suggestions -[Search suggestions](https://support.mozilla.org/en-US/kb/search-firefox-address-bar#w_search-suggestions) are disabled in the URL bar to keep everything you type from going to Google. +[Search suggestions](https://support.mozilla.org/en-US/kb/search-firefox-address-bar#w_search-suggestions) from the URL bar are disabled in Betterfox to keep everything you type from going to Google. * `☰` *→ Settings → Search → Search Suggestions → Provide search suggestions* @@ -158,13 +158,26 @@ user_pref("browser.search.suggest.enabled", true); ``` #### Change your default search engine -You can also [select a default search engine](https://support.mozilla.org/en-US/kb/change-your-default-search-settings-firefox#w_default-search-engine) just for [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) windows. (This is an option after you apply the `user.js` and restart.) +You can also select a [default search engine](https://support.mozilla.org/en-US/kb/change-your-default-search-settings-firefox#w_default-search-engine) just for [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) windows. (This is an option after you apply the `user.js` and restart.) * `☰` *→ Settings → Search → Default Search Engine* -Change your default search engine to DuckDuckGo, or add a [premium](https://help.kagi.com/kagi/why-kagi/why-pay-for-search.html) search engine like [Kagi](https://kagi.com/welcome). +To add a custom search engine like [Brave Search](https://search.brave.com/) or a [premium](https://help.kagi.com/kagi/why-kagi/why-pay-for-search.html) search engine like [Kagi](https://kagi.com/welcome), you can easily [add a search engine from the address bar](https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox#w_add-a-search-engine-from-the-address-bar). -For Kagi, if you want search suggestions in the URL bar, make sure to follow the first steps [here](https://help.kagi.com/kagi/getting-started/setting-default.html#firefox_desktop). Then use the latter steps to setup Kagi for private browsing using your [private session link](https://help.kagi.com/kagi/getting-started/setting-default.html#private_session). Otherwise, you can just use the private session link. Don't forget to add `&q=%s` to the end of the session link. +> [!NOTE] +> For Kagi, if you want search suggestions in the URL bar, make sure to follow the first steps in their [Firefox tutorial](https://help.kagi.com/kagi/getting-started/setting-default.html#firefox_browsers). Then, use the latter steps to setup Kagi for Private Browsing using your [private session link](https://help.kagi.com/kagi/getting-started/setting-default.html#private_session). +> +> If you don't care about enabling search suggestions, then you can use the private session link both as your default and private search engine. +> +> Don't forget to add `&q=%s` to the end of the session link! + +#### Disable unified search button +In v.137.0, this is "a new, easy-to-access button in the address bar helps you switch between search engines and search modes with ease." + +```javascript +// PREF: disable unified search button +user_pref("browser.urlbar.scotchBonnet.enableOverride", false); +``` ***