summaryrefslogtreecommitdiff
path: root/local-settings.js
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-11-18 17:04:18 -0500
committerB. Stack <bgstack15@gmail.com>2021-11-18 17:04:18 -0500
commit34842ce320a0e2f9ab0ac82a4172bb748effff79 (patch)
tree669f6a410cf3544839f32a9dcb0571e00d789a8c /local-settings.js
parentadd 94.0 patches that should be included (diff)
downloadlibrewolf-fedora-ff-34842ce320a0e2f9ab0ac82a4172bb748effff79.tar.gz
librewolf-fedora-ff-34842ce320a0e2f9ab0ac82a4172bb748effff79.tar.bz2
librewolf-fedora-ff-34842ce320a0e2f9ab0ac82a4172bb748effff79.zip
add policies and local-settings files
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