I prefer Librewolf as it is easier and simpler to use

  • Imprint9816@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    16
    ·
    2 months ago

    Its better to just go through the settings yourself then rely on arkenfox. This just adds a middleman into the process of keeping your settings updated.

    • MrOtherGuy@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      In addition, if you use user.js then you essentially cannot change those settings at runtime (via about:config or otherwise), because your user.js will override the settings on next startup. Maybe that’s desired for some, but good to keep in mind nonetheless.

        • MrOtherGuy@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          2 months ago

          I don’t think that could work. Not unless we are talking about different things, or unless you run their updater script everytime before starting Firefox.

          • Shredder1750@lemmy.ml
            link
            fedilink
            arrow-up
            1
            ·
            2 months ago

            If you use user-overrides.js, it adds your custom preferences at the bottom of the user.js, as the prefs are read from top to bottom, if a new duplicate exist in your user-overrides.js but with a different value the new value would be used as it is at the bottom.

            • MrOtherGuy@lemmy.world
              link
              fedilink
              arrow-up
              1
              ·
              2 months 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@lemmy.world
                link
                fedilink
                arrow-up
                1
                ·
                2 months ago

                Have you independently confirmed this?

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

                • MrOtherGuy@lemmy.world
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  2 months 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.

    • Shredder1750@lemmy.ml
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      Have you seen the user.js, you have to change a lot of settings and you cannot keep up to date with them, secondly Arkenfox prefers you to go over their user.js by your self and their updater script has the -c flag to show you the difference between current user.js and new user.js

      Overall it would be very difficult to manage something like this on our own as most things are not visible on the settings page of Firefox