diff --git a/docs/faq.md b/docs/faq.md deleted file mode 100644 index c6535cf..0000000 --- a/docs/faq.md +++ /dev/null @@ -1,32 +0,0 @@ -# Questions: - -The questions [open] and [disscussion] are discussed in [the faq issue](https://gitlab.com/librewolf-community/settings/-/issues/50). - -* How do I toggle the proton ui? [open] -* How do I enable DRM? [open] -* How do I enable microphone / webcam? [open] -* How do I make LibreWolf remember all the cookies? [discussion] -* How do I enable dark theming on websites such as duckduckgo.com? [open] -* How do I switch to another language, say, to brazil/portuguese? [open] - -# How do I make LibreWolf remember all the cookies? - -In your librewolf.overrides.cfg, add the following: - - // cookies: No longer forget any website data.. - pref("network.cookie.cookieBehavior", 1); - pref("privacy.sanitize.sanitizeOnShutdown", false); - pref("privacy.clearOnShutdown.cookies", false); - pref("privacy.clearOnShutdown.cache", false); - pref("privacy.clearOnShutdown.downloads", false); - pref("privacy.clearOnShutdown.history", false); - pref("privacy.clearOnShutdown.formData", false); - pref("privacy.clearOnShutdown.offlineApps", false); - pref("privacy.clearOnShutdown.sessions", false); - pref("privacy.clearOnShutdown.siteSettings", false); - - - - - -