mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2025-08-21 05:47:23 +02:00
Compare commits
No commits in common. "5a705e1ec8b6e87b4f187f1feb10283f712e843b" and "e6ca53ff712fb4477f3c85c28671547f4bd5f18c" have entirely different histories.
5a705e1ec8
...
e6ca53ff71
@ -15,9 +15,6 @@ mkdir -p ~/.ssh
|
|||||||
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
cat .mikaela/keys/authorized_keys >~/.ssh/authorized_keys
|
||||||
cat etc/ssh/ssh_config >~/.ssh/config
|
cat etc/ssh/ssh_config >~/.ssh/config
|
||||||
cat .editorconfig >~/.editorconfig
|
cat .editorconfig >~/.editorconfig
|
||||||
mkdir -p ~/.librewolf/ ~/.var/app/io.gitlab.librewolf-community/.librewolf/
|
|
||||||
cat conf/librewolf.overrides.cfg.js >~/.librewolf/librewolf.overrides.cfg
|
|
||||||
cat conf/librewolf.overrides.cfg.js >~/.var/app/io.gitlab.librewolf-community/.librewolf/librewolf.overrides.cfg
|
|
||||||
touch ~/.MIKAELA_GREP
|
touch ~/.MIKAELA_GREP
|
||||||
set +x
|
set +x
|
||||||
# vim : set ft=sh :
|
# vim : set ft=sh :
|
||||||
|
1
conf/.gitignore
vendored
1
conf/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
librewolf.overrides.cfg
|
|
@ -1 +0,0 @@
|
|||||||
librewolf.overrides.cfg.js
|
|
@ -1,60 +0,0 @@
|
|||||||
// LibreWolf override configuration, begins with samples from
|
|
||||||
// https://librewolf.net/docs/settings/
|
|
||||||
// Also incorporates some of https://aminda.eu/browser-extensions#firefox-aboutconfig
|
|
||||||
|
|
||||||
// Enable letterboxing
|
|
||||||
defaultPref("privacy.resistFingerprinting.letterboxing", true);
|
|
||||||
|
|
||||||
// Stricter cross-origin policy
|
|
||||||
defaultPref("network.http.referer.XOriginPolicy", 2);
|
|
||||||
|
|
||||||
// Enable WebGL
|
|
||||||
//defaultPref("webgl.disabled", false);
|
|
||||||
|
|
||||||
// Enable Firefox accounts
|
|
||||||
defaultPref("identity.fxaccounts.enabled", true);
|
|
||||||
|
|
||||||
// Settings on what to clear on quit
|
|
||||||
// - Goal: let Element Web & co stay logged in
|
|
||||||
defaultPref("privacy.clearOnShutdown.cache", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.cookies", false);
|
|
||||||
//defaultPref("privacy.clearOnShutdown.downloads", false);
|
|
||||||
//defaultPref("privacy.clearOnShutdown.formdata", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.history", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.offlineApps", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.openWindows", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.sessions", false);
|
|
||||||
defaultPref("privacy.clearOnShutdown.siteSettings", false);
|
|
||||||
|
|
||||||
// Don't resume from crash (SSD)
|
|
||||||
defaultPref("browser.sessionstore.resume_from_crash", false);
|
|
||||||
|
|
||||||
// Stricter autoplay
|
|
||||||
defaultPref("media.autoplay.blocking_policy", 2);
|
|
||||||
|
|
||||||
// No corporate CA MITM
|
|
||||||
defaultPref("security.certerrors.mitm.auto_enable_enterprise_roots", false);
|
|
||||||
|
|
||||||
// Decrease animations
|
|
||||||
defaultPref("image.animation_mode", "once");
|
|
||||||
|
|
||||||
// Punycode
|
|
||||||
defaultPref("network.IDN_show_punycode", true);
|
|
||||||
|
|
||||||
// Enforce reader mode enabling?
|
|
||||||
defaultPref("reader.parse-on-load.force-enabled", true);
|
|
||||||
|
|
||||||
// TRR & ECH
|
|
||||||
defaultPref("network.trr.mode", 3);
|
|
||||||
defaultPref("network.trr.early-AAAA", true);
|
|
||||||
defaultPref("network.trr.uri", "https://dns11.quad9.net/dns-query");
|
|
||||||
defaultPref("network.trr.disable-ECS", false);
|
|
||||||
defaultPref("network.dns.echconfig.enabled", true);
|
|
||||||
defaultPref("network.dns.use_https_rr_as_altsvc", true);
|
|
||||||
defaultPref(
|
|
||||||
"network.trr.excluded-domains",
|
|
||||||
"http.badssl.com,norwegianwifi.com",
|
|
||||||
);
|
|
||||||
|
|
||||||
// Default UI scale
|
|
||||||
defaultPref("layout.css.devPixelsPerPx", "1.5");
|
|
Loading…
x
Reference in New Issue
Block a user