mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-16 11:51:36 +00:00
Co-authored-by: Miouyouyou (Myy) <myy@miouyouyou.fr> Co-authored-by: Igor Pečovnik <igorpecovnik@users.noreply.github.com> Co-authored-by: Richard Neese <r.neese@gmail.com> Co-authored-by: iav <iav@iav.lv> Co-authored-by: lanefu <lanefu@users.noreply.github.com> Co-authored-by: Werner <EvilOlaf@users.noreply.github.com> Co-authored-by: Oleg <balbes-150@yandex.ru> Co-authored-by: Lane Jennison <lane@lane-fu.com> Co-authored-by: JMCC <jmcc1@gmx.com>
15 lines
654 B
Text
15 lines
654 B
Text
//
|
|
// set default home page
|
|
pref("browser.startup.homepage","https://www.armbian.com");
|
|
pref("browser.shell.checkDefaultBrowser", false);
|
|
pref("browser.startup.homepage_override.mstone", "ignore");
|
|
// disables the 'know your rights' button from displaying on first run
|
|
pref("browser.rights.3.shown", true);
|
|
// disables the request to send performance data from displaying
|
|
pref("toolkit.telemetry.prompted", 2);
|
|
pref("toolkit.telemetry.rejected", true);
|
|
// speed optimisations
|
|
pref("reader.parse-on-load.enabled", false);
|
|
pref("browser.cache.disk.enable", false);
|
|
pref("browser.cache.memory.enable", true);
|
|
// pref("browser.cache.memory.capacity", "-1");
|