summaryrefslogtreecommitdiff
path: root/librewolf/debian/browser.js.in
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
committerB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
commit826a2e7f8c7786acb3b5d2217f19814f314289ab (patch)
tree9c1b67262b407684d8874fc9f525042c90d88207 /librewolf/debian/browser.js.in
parentcheck gcc ver instead of fedora ver (diff)
downloadstackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.gz
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.bz2
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.zip
add initial lw d/ contents
Diffstat (limited to 'librewolf/debian/browser.js.in')
-rw-r--r--librewolf/debian/browser.js.in30
1 files changed, 30 insertions, 0 deletions
diff --git a/librewolf/debian/browser.js.in b/librewolf/debian/browser.js.in
new file mode 100644
index 0000000..429c4f4
--- /dev/null
+++ b/librewolf/debian/browser.js.in
@@ -0,0 +1,30 @@
+// This is the Debian specific preferences file for @Browser@
+// You can make any change in here, it is the purpose of this file.
+// You can, with this file and all files present in the
+// /etc/@browser@ directory, override any preference you can see in
+// about:config.
+//
+// Note that pref("name", value, locked) is allowed in these
+// preferences files if you don't want users to be able to override
+// some preferences.
+
+pref("extensions.update.enabled", true);
+
+// Use LANG environment variable to choose locale
+pref("intl.locale.requested", "");
+
+// Disable default browser checking.
+pref("browser.shell.checkDefaultBrowser", false);
+
+// Disable openh264.
+pref("media.gmp-gmpopenh264.enabled", false);
+
+// Default to classic view for about:newtab
+pref("browser.newtabpage.enhanced", false, sticky);
+
+// Disable health report upload
+pref("datareporting.healthreport.uploadEnabled", false);
+
+// Default to no suggestions in the urlbar. This still brings a panel asking
+// the user whether they want to opt-in on first use.
+pref("browser.urlbar.suggest.searches", false);
bgstack15