summaryrefslogtreecommitdiff
path: root/local-settings.js
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-07-03 09:04:13 -0400
committerB. Stack <bgstack15@gmail.com>2022-07-03 09:04:13 -0400
commit28132e774478bb632672ff04958b1cfc1a464da8 (patch)
tree39176f6b62dfa11d262572e44ae9c07dc553cdc5 /local-settings.js
parentMerge branch 'rawhide' of ssh://pkgs.fedoraproject.org/rpms/firefox into rawhide (diff)
downloadlibrewolf-fedora-ff-28132e774478bb632672ff04958b1cfc1a464da8.tar.gz
librewolf-fedora-ff-28132e774478bb632672ff04958b1cfc1a464da8.tar.bz2
librewolf-fedora-ff-28132e774478bb632672ff04958b1cfc1a464da8.zip
v102.0 rc1b102.0
Diffstat (limited to 'local-settings.js')
-rw-r--r--local-settings.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/local-settings.js b/local-settings.js
new file mode 100644
index 0000000..eaecc05
--- /dev/null
+++ b/local-settings.js
@@ -0,0 +1,7 @@
+// Sets up the .cfg file.
+
+//Specifies the .cfg filename (path cannot be changed)
+pref("general.config.filename", "librewolf.cfg");
+
+//Allows .cfg file to be stored in plain text without obfuscation
+pref("general.config.obscure_value", 0);
bgstack15