I prefer Librewolf as it is easier and simpler to use

  • Lemongrab@lemmy.one
    link
    fedilink
    arrow-up
    1
    ·
    2 months ago

    That is not how Arkenfox works. You apply the patch using the script, and then re-run this patch everytime Arkenfox receives an update. In between running, you can change settings in about:config and settings, but it will be overwritten if a different value is included in the user.js. A more permanent solution is using the user-overrides.js file required by the script before patching to create a persistent config.

    Something like: user_prefs(“privacy.resistFingerprinting.letterboxing” , “false”);

    More details about user overrides can be found here.

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

      What I’m trying to point out here, is that prefs declared in user.js (whether they are put there using scripting or otherwise) cannot be persistently modified at runtime from within Firefox. That may or may not be a huge problem, but something to be aware of.

      • Lemongrab@lemmy.one
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        Yes, I understand. I am pretty sure that is incorrect. With an Arkenfox profile, I have modified my prefs in about:config and retained those changes persistently.

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

          You can modify prefs at runtime and have them persist - except those prefs that are also declared in user.js. The problem arises when folks apply whole list of prefs via user.js from one repository or another, which could be hundreds, without acknowledging what prefs they set and without checking what those prefs do. If they then have some reason to change any one of those prefs - their change won’t persist if that particular pref is in user.js

          A thing you could do is to just start Firefox once with a user.js file, and then remove that file. On that single startup Firefox sets prefs according to user.js, and all those changes persist to prefs.js when Firefox is shutdown. You are then able to also persist changes to all prefs because by removing user.js Firefox won’t try to override the your session saved prefs with user.js at startup.

    • Lemongrab@lemmy.one
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      2 months ago

      I have independently tested you can change settings before. I will test again tomorrow if I remember to.