summaryrefslogtreecommitdiff
path: root/local-settings.js
diff options
context:
space:
mode:
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