forked from extern/nix-config
6f75925146
Although removing these dotfiles gave the repository a clean feeling, it made it significantly harder to resume using a certain window manager or other tool at any time. Instead of removing dotfiles entirely, it's enough to simply not install the programs you don't want to use, or even install them but not open them.
27 lines
781 B
INI
27 lines
781 B
INI
// Enable WebGL
|
|
defaultPref("webgl.disabled", false);
|
|
|
|
// Can be safely disabled unless on Linux
|
|
defaultPref("media.peerconnection.ice.no_host", false);
|
|
|
|
// Disable middle click paste
|
|
defaultPref("middlemouse.paste", false);
|
|
|
|
// Use real timezone
|
|
defaultPref("privacy.resistFingerprinting", false);
|
|
|
|
// Soft-fail OCSP
|
|
defaultPref("security.OCSP.require", false);
|
|
|
|
// Save to downloads by default
|
|
defaultPref("browser.download.useDownloadDir", true);
|
|
|
|
// Enable autoplay for muted media (default)
|
|
defaultPref("media.autoplay.default", 1);
|
|
|
|
// Autoplay when interacting with the website (default)
|
|
defaultPref("media.autoplay.blocking_policy", 0);
|
|
|
|
// Fix bspwm and other window managers automatically pressing back on right click
|
|
defaultPref("ui.context_menus.after_mouseup", true);
|