this post was submitted on 14 Jul 2024
181 points (95.9% liked)

Privacy

31252 readers
885 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
 

I prefer Librewolf as it is easier and simpler to use

you are viewing a single comment's thread
view the rest of the comments
[–] Lemongrab@lemmy.one 1 points 2 months ago (2 children)

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 1 points 2 months ago (1 children)

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 1 points 2 months ago (1 children)

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 1 points 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 1 points 2 months ago* (last edited 2 months ago)

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