From c879e72e85ce150b7e221aecbdc84d77702870eb Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 20 Sep 2018 12:35:29 -0400 Subject: [PATCH] Remove waterfox config Now that I've gone through the stage of trying various browser derivatives, I've migrated to Firefox and Chromium again, primarily due to the lack of consistent updates, and partially due to the need to check upstream a bit more for reported issues. In other words, using what's in the official repos saves me a lot of time and hassle. --- waterfox/user.js | 65 ------------------------------------------------ 1 file changed, 65 deletions(-) delete mode 100644 waterfox/user.js diff --git a/waterfox/user.js b/waterfox/user.js deleted file mode 100644 index 19c1c0b..0000000 --- a/waterfox/user.js +++ /dev/null @@ -1,65 +0,0 @@ -// New Start: A modern Arch workflow built with an emphasis on functionality. -// Copyright (C) 2017 Donovan Glover - -// Remove the large bar that prompts for multiple search providers -// even when you only have one search provider enabled -user_pref("browser.search.hiddenOneOffs", false); -user_pref("browser.urlbar.oneOffSearches", false); - -// Disable search suggestions -user_pref("browser.search.suggest.enabled", false); -user_pref("browser.urlbar.searchSuggestionsChoice", false); -user_pref("browser.urlbar.suggest.searches", false); -user_pref("browser.urlbar.timesBeforeHidingSuggestionsHint", 0); - -// Use the light devtools theme and open it in a new window -user_pref("devtools.theme", "light"); -user_pref("devtools.toolbox.host", "window"); -user_pref("devtools.toolbox.selectedTool", "inspector"); - -// Enable scrolling by holding down the middle mouse button -user_pref("general.autoScroll", true); - -// ============================================================================ -// Other disabled content -// ============================================================================ - -// Disable web notifications -user_pref("dom.webnotifications.enabled", false); - -// Disable location-aware browsing -user_pref("geo.enabled", false); - -// Disable screen sharing, audio capture, and video capture -user_pref("media.navigator.video.enabled", false); -user_pref("media.getusermedia.screensharing.enabled", false); -user_pref("media.getusermedia.audiocapture.enabled", false); - -// Disable speech recognition and synthesis -user_pref("media.webspeech.recognition.enable", false); -user_pref("media.webspeech.synth.enabled", false); - -// Disable the gamepad API -user_pref("dom.gamepad.enabled", false); - -// Disable the VR API -user_pref("dom.vr.enabled", false); - -// Disable the vibrator API -user_pref("dom.vibrator.enabled", false); - -// Disable other video features -user_pref("camera.control.face_detection.enabled", false); - -// Set the default search engine to DuckDuckGo -user_pref("browser.search.defaultenginename", "DuckDuckGo"); -user_pref("browser.search.order.1", "DuckDuckGo"); -user_pref("keyword.URL", "https://duckduckgo.com/html/?q=!+"); - -// Explicitly declare the region for searches -user_pref("browser.search.countryCode", "US"); -user_pref("browser.search.region", "US"); -user_pref("browser.search.geoip.url", ""); - -// Always request the english version of a webpage -user_pref("intl.accept_languages", "en-us, en");