summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/vendor.js
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox-g/debian/vendor.js')
-rw-r--r--waterfox-g/debian/vendor.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/waterfox-g/debian/vendor.js b/waterfox-g/debian/vendor.js
new file mode 100644
index 0000000..a7c9948
--- /dev/null
+++ b/waterfox-g/debian/vendor.js
@@ -0,0 +1,29 @@
+// Disable default browser checking
+pref("browser.shell.checkDefaultBrowser", false);
+pref("browser.defaultbrowser.notificationbar", false);
+
+// Don't disable extensions dropped in to a system
+// location, or those owned by the application
+pref("extensions.autoDisableScopes", 3);
+
+// Don't display the one-off addon selection dialog when
+// upgrading from a version of Waterfox older than 8.0
+pref("extensions.shownSelectionUI", true);
+
+// Fall back to en-US search plugins if none exist for the current locale
+pref("distribution.searchplugins.defaultLocale", "en-US");
+
+// Use OS regional settings for date and time
+pref("intl.regional_prefs.use_os_locales", true);
+
+// Use LANG environment variable to choose locale
+pref("intl.locale.requested", "");
+
+// Enable Network Manager integration
+pref("network.manage-offline-status", true);
+
+// Disable downloading language packs, cuz Waterfox uses own and they are already included in subpackages
+pref("extensions.getAddons.langpacks.url", "", locked);
+
+// Disable requiring signatures for language packs
+pref("extensions.langpacks.signatures.required", false, locked);
bgstack15