1
0
Fork 0
This commit is contained in:
Luca Bilke 2023-04-24 17:22:01 +02:00 committed by Luca Bilke
parent 81aadc6eaa
commit 9dbba090bb
4 changed files with 20 additions and 17 deletions

@ -1 +1 @@
Subproject commit b1f04e7e0b8fab0a8f9e6b6de9d69625f81c37df
Subproject commit 3bc5a385fe1624d6701326f92e9456774954404d

View File

@ -2,7 +2,7 @@
## arkenfox user.js updater for macOS and Linux
## version: 3.7
## version: 3.8
## Author: Pat Johnson (@overdodactyl)
## Additional contributors: @earthlng, @ema-pe, @claustromaniac, @infinitewarp

View File

@ -1,37 +1,39 @@
// Turn on middle mouse click scrolling
user_pref("middlemouse.paste", false);
user_pref("general.autoScroll", true);
user_pref("middlemouse.paste", false);
user_pref("general.autoScroll", true);
// Compact the browser UI
user_pref("browser.uidensity", 1);
user_pref("browser.compactmode.show", true);
user_pref("browser.uidensity", 1);
user_pref("browser.compactmode.show", true);
// Allow custom browser CSS
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
// Enable DRM
user_pref("media.eme.enabled", true);
user_pref("media.eme.enabled", true);
// Set startup page to homepage
user_pref("browser.startup.page", 1);
user_pref("browser.startup.page", 1);
// Don't clear history on browser shutdown
user_pref("privacy.clearOnShutdown.history", false);
user_pref("privacy.clearOnShutdown.history", false);
// Allow search suggestions
// Override these if you trust the searchengine you have set as default
user_pref("browser.search.suggest.enabled", true);
user_pref("browser.urlbar.suggest.searches", true);
// Allow search in URL bar
user_pref("keyword.enabled", true);
// Allow search suggestions
user_pref("browser.search.suggest.enabled", true);
user_pref("browser.urlbar.suggest.searches", true);
// Disable password/credential saving
user_pref("signon.rememberSignons", false);
user_pref("security.nocertdb", true);
user_pref("signon.rememberSignons", false);
user_pref("security.nocertdb", true);
// Turn off letterboxing
user_pref("privacy.resistFingerprinting.letterboxing", false);
user_pref("privacy.resistFingerprinting.letterboxing", false);
// Set homepage
user_pref("browser.startup.homepage", "https://search.snaile.de/");
user_pref("browser.startup.homepage", "https://search.snaile.de/");
// Don't make firefox aware of window manager fullscreening
// user_pref("full-screen-api.ignore-widgets", true);

@ -0,0 +1 @@
Subproject commit 371591a7b6f0f3c9501c52a7b566addbfd804d09