nix-config/.PKGBUILDs/tari-web/mozilla.cfg
Donovan Glover a6687d45e0
PKGBUILDs: Add sources
Here are the source files I package with my PKGBUILDs. The tari-scripts
directory features some color scripts from around the web. tari-urxvt
contains patches for urxvt, tari-util houses launch.c, and tari-web is
where my mozilla.cfg is located.
2018-11-12 22:03:37 -05:00

51 lines
2.1 KiB
INI

//
// Don't use pocket
lockPref("browser.pocket.enabled", false);
// Don't automatically scan websites
lockPref("browser.safebrowsing.malware.enabled", false);
lockPref("browser.safebrowsing.phishing.enabled", false);
lockPref("browser.safebrowsing.downloads.enabled", false);
lockPref("browser.safebrowsing.downloads.remote.block_uncommon", false);
lockPref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false);
// Don't try to suggest search results
lockPref("browser.search.suggest.enabled", false);
lockPref("browser.urlbar.searchSuggestionsChoice", false);
lockPref("browser.urlbar.suggest.searches", false);
// Don't try to update search engines automatically
lockPref("browser.search.update", false);
// Don't send excessive data
lockPref("browser.tabs.crashReporting.sendReport", false);
lockPref("datareporting.healthreport.uploadEnabled", false);
lockPref("app.shield.optoutstudies.enabled", false);
// Don't warn when closing tabs
lockPref("browser.tabs.warnOnClose", false);
// Don't save account information
lockPref("signon.rememberSignons", false);
// Disable the default new tab page
lockPref("browser.newtabpage.enabled", false);
lockPref("browser.newtabpage.activity-stream.showSearch", false);
lockPref("browser.newtabpage.activity-stream.showSponsored", false);
lockPref("browser.newtabpage.activity-stream.feeds.topsites", false);
lockPref("browser.newtabpage.activity-stream.feeds.snippets", false);
lockPref("browser.newtabpage.activity-stream.feeds.section.highlights", false);
lockPref("browser.newtabpage.activity-stream.section.highlights.includeBookmarks", false);
lockPref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false);
lockPref("browser.newtabpage.activity-stream.section.highlights.includePocket", false);
lockPref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
// Use vim in the devtools editor
lockPref("devtools.editor.keymap", "vim");
// Disable the HTTPS everywhere section in devtools
lockPref("devtools.webextensions.https-everywhere@eff.org.enabled", false);
// vim:syn=javascript