Hi everyone,
new Garuda user here, got it installed on my second sdd for test, and I enjoy it so much I’m planning to definitely switch for it instead of the UbuntuStudio I was using since years.
That said, I have a simple question : isn’t it possible to simply block cookies on FireDragon like on Firefox ? I know I can set it to delete them when leaving, but I appreciate the option to only accept the ones I want.
So if you know how to do that, thanks to give me your method, didn’t find the option in the parameters section.
There are some other settings we set as you can see in /usr/lib/firedragon/firedragon.cfg
firedragon.cfg
/** [SECTION] ISOLATION
Defaults to strict mode, which includes:
dFPI for both normal and private windows
Strict blocking lists for trackers
Shims to avoid breakage caused by blocking lists
Stricter policies for xorigin referrers
dFPI specific cookie cleaning mechanism
Query stripping
The desired category must be set with pref() otherwise it will not stick.
The UI that allows to change mode manually is hidden.
*/
pref(“browser.contentblocking.category”, “strict”);
defaultPref(“network.cookie.cookieBehavior”, 5); // Enforce dFPI → FIREDRAGON CONFIG
// Enable APS
defaultPref(“privacy.partition.always_partition_third_party_non_cookie_storage”, true);
defaultPref(“privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage”, false);
defaultPref(“privacy.partition.serviceWorkers”, true); // Isolate service workers
/** [SECTION] SANITIZING /
defaultPref(“network.cookie.lifetimePolicy”, 0); // Keep cookies
/*
This way of sanitizing cookies would override the exceptions set by the users and just delete everything.
We disable it but cookies and site data are still cleared per session unless exceptions are set.
*/
defaultPref(“privacy.clearOnShutdown.cache”, false);
defaultPref(“privacy.clearOnShutdown.cookies”, false);
defaultPref(“privacy.clearOnShutdown.downloads”, false);
defaultPref(“privacy.clearOnShutdown.history”, false);
defaultPref(“privacy.clearOnShutdown.offlineApps”, false);
defaultPref(“privacy.clearOnShutdown.sessions”, false);
defaultPref(“privacy.sanitize.sanitizeOnShutdown”, false); // Set this to true to clear data and cookies on shutdown → FIREDRAGON CONFIG
defaultPref(“privacy.sanitize.timeSpan”, 0);