I prefer Librewolf as it is easier and simpler to use

  • @MrOtherGuy
    link
    11 month ago

    Yes, but that is not what I’m talking about. What I mean is that when Firefox is running and you go to change some setting in say, Settings page, then the new value for that preference is stored into prefs.js (at latest on Firefox shutdown, it might remain only in-memory for some time I’m not sure). Anyway, the new value persists only for that browser session, because on next startup whatever value was set by user.js will override it.

    • @laughterlaughter
      link
      11 month ago

      Have you independently confirmed this?

      What is preventing user.js from doing exactly what you’re describing right now on your system?

      • @MrOtherGuy
        link
        21 month ago

        Sure. For simplified example have only the following in your user.js file:

        user_pref("browser.tabs.warnOnClose",true);
        
        1. Start Firefox
        2. Observe that the pref is indeed true
        3. Go to Setting > General, observe that Confirm before closing multiple tabs is checked
        4. Uncheck the option
        5. In about:config observe that browser.tabs.warnOnClose is now false
        6. Restart Firefox
        7. Observe that the pref is again set to true

        The reason is also very simple. Firefox will never write anything to user.js - thus any changes you do at runtime will only be stored to prefs.js. However, user.js always overrides prefs.js at startup.

        • @laughterlaughter
          link
          1
          edit-2
          1 month ago

          Understood, thanks. So on a clean install, I’m assuming user.js is either empty or missing, correct?

          • @MrOtherGuy
            link
            21 month ago

            Yes. Firefox doesn’t create user.js file itself - if you want one then you need to create it yourself either manually or with some tool. Also, I’ve seen some “security” software create user.js file without notifying the user about it…