New backup 2025-02-28 03:50:02
This commit is contained in:
		
							parent
							
								
									8aec802a5d
								
							
						
					
					
						commit
						161c1360d0
					
				
					 14 changed files with 359 additions and 0 deletions
				
			
		
							
								
								
									
										33
									
								
								de/home/.librewolf/config/chrome/userChrome.css
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								de/home/.librewolf/config/chrome/userChrome.css
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,33 @@ | |||
| #TabsToolbar { | ||||
|     display: none !important; | ||||
| } | ||||
| #sidebar-splitter { | ||||
|     display: none !important; | ||||
| } | ||||
| /* #sidebar-header is hidden by default, change "none" to "inherit" to restore it. */ | ||||
| #sidebar-header { | ||||
|     display: none !important; | ||||
| } | ||||
| /************************************************************************************************************************************************************************************************************************************************************* | ||||
| 
 | ||||
| "userChrome.css" is a custom CSS file that can be used to specify CSS style rules for Floorp's interface (NOT internal site) using "chrome" privileges. | ||||
| For instance, if you want to hide the tab bar, you can use the following CSS rule: | ||||
| 
 | ||||
| ************************************** | ||||
| #TabsToolbar {                       * | ||||
|     display: none !important;        * | ||||
| }                                    * | ||||
| ************************************** | ||||
| 
 | ||||
| NOTE: You can use the userChrome.css file without change preferences (about:config) | ||||
| 
 | ||||
| Quote: https://userChrome.org | https://github.com/topics/userchrome  | ||||
| 
 | ||||
| ************************************************************************************************************************************************************************************************************************************************************/ | ||||
| 
 | ||||
| @charset "UTF-8"; | ||||
| @-moz-document url(chrome://browser/content/browser.xhtml) { | ||||
| /* Please write your custom CSS under this line*/ | ||||
| 
 | ||||
| 
 | ||||
| } | ||||
							
								
								
									
										22
									
								
								de/home/.librewolf/config/chrome/userContent.css
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								de/home/.librewolf/config/chrome/userContent.css
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,22 @@ | |||
| /************************************************************************************************************************************************************************************************************************************************************* | ||||
| 
 | ||||
| "userContent.css" is a custom CSS file that can be used to specify CSS style rules for Floorp's intenal site using "chrome" privileges. | ||||
| For instance, if you want to apply CSS at "about:newtab" and "about:home", you can use the following CSS rule: | ||||
| 
 | ||||
| *********************************************************************** | ||||
| @-moz-document url-prefix("about:newtab"), url-prefix("about:home") { * | ||||
| 
 | ||||
| background-color: green; | ||||
| 
 | ||||
| * | ||||
| * Write your css *                                                    * | ||||
|                                                                       * | ||||
| }                                                                     * | ||||
| *********************************************************************** | ||||
| 
 | ||||
| NOTE: You can use the userContent.css file without change preferences (about:config) | ||||
| 
 | ||||
| ************************************************************************************************************************************************************************************************************************************************************/ | ||||
| 
 | ||||
| @charset "UTF-8"; | ||||
| /* Please write your custom CSS under this line*/ | ||||
							
								
								
									
										246
									
								
								de/home/.librewolf/config/user.js
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										246
									
								
								de/home/.librewolf/config/user.js
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,246 @@ | |||
| //
 | ||||
| /* You may copy+paste this file and use it as it is. | ||||
|  * | ||||
|  * If you make changes to your about:config while the program is running, the | ||||
|  * changes will be overwritten by the user.js when the application restarts. | ||||
|  * | ||||
|  * To make lasting changes to preferences, you will have to edit the user.js. | ||||
|  */ | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * Betterfox                                                                * | ||||
|  * "Ad meliora"                                                             * | ||||
|  * version: 135                                                             * | ||||
|  * url: https://github.com/yokoffing/Betterfox                              *
 | ||||
| ****************************************************************************/ | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * SECTION: FASTFOX                                                         * | ||||
| ****************************************************************************/ | ||||
| /** GENERAL ***/ | ||||
| user_pref("content.notify.interval", 100000); | ||||
| 
 | ||||
| /** GFX ***/ | ||||
| user_pref("gfx.canvas.accelerated.cache-size", 512); | ||||
| user_pref("gfx.content.skia-font-cache-size", 20); | ||||
| 
 | ||||
| /** DISK CACHE ***/ | ||||
| user_pref("browser.cache.disk.enable", false); | ||||
| 
 | ||||
| /** MEDIA CACHE ***/ | ||||
| user_pref("media.memory_cache_max_size", 65536); | ||||
| user_pref("media.cache_readahead_limit", 7200); | ||||
| user_pref("media.cache_resume_threshold", 3600); | ||||
| 
 | ||||
| /** IMAGE CACHE ***/ | ||||
| user_pref("image.mem.decode_bytes_at_a_time", 32768); | ||||
| 
 | ||||
| /** NETWORK ***/ | ||||
| user_pref("network.http.max-connections", 1800); | ||||
| user_pref("network.http.max-persistent-connections-per-server", 10); | ||||
| user_pref("network.http.max-urgent-start-excessive-connections-per-host", 5); | ||||
| user_pref("network.http.pacing.requests.enabled", false); | ||||
| user_pref("network.dnsCacheExpiration", 3600); | ||||
| user_pref("network.ssl_tokens_cache_capacity", 10240); | ||||
| 
 | ||||
| /** SPECULATIVE LOADING ***/ | ||||
| user_pref("network.dns.disablePrefetch", true); | ||||
| user_pref("network.dns.disablePrefetchFromHTTPS", true); | ||||
| user_pref("network.prefetch-next", false); | ||||
| user_pref("network.predictor.enabled", false); | ||||
| user_pref("network.predictor.enable-prefetch", false); | ||||
| 
 | ||||
| /** EXPERIMENTAL ***/ | ||||
| user_pref("layout.css.grid-template-masonry-value.enabled", true); | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * SECTION: SECUREFOX                                                       * | ||||
| ****************************************************************************/ | ||||
| /** TRACKING PROTECTION ***/ | ||||
| user_pref("browser.contentblocking.category", "strict"); | ||||
| user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com"); | ||||
| user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com"); | ||||
| user_pref("browser.download.start_downloads_in_tmp_dir", true); | ||||
| user_pref("browser.helperApps.deleteTempFileOnExit", true); | ||||
| user_pref("browser.uitour.enabled", false); | ||||
| user_pref("privacy.globalprivacycontrol.enabled", true); | ||||
| 
 | ||||
| /** OCSP & CERTS / HPKP ***/ | ||||
| user_pref("security.OCSP.enabled", 0); | ||||
| user_pref("security.remote_settings.crlite_filters.enabled", true); | ||||
| user_pref("security.pki.crlite_mode", 2); | ||||
| 
 | ||||
| /** SSL / TLS ***/ | ||||
| user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true); | ||||
| user_pref("browser.xul.error_pages.expert_bad_cert", true); | ||||
| user_pref("security.tls.enable_0rtt_data", false); | ||||
| 
 | ||||
| /** DISK AVOIDANCE ***/ | ||||
| user_pref("browser.privatebrowsing.forceMediaMemoryCache", true); | ||||
| user_pref("browser.sessionstore.interval", 60000); | ||||
| 
 | ||||
| /** SHUTDOWN & SANITIZING ***/ | ||||
| user_pref("browser.privatebrowsing.resetPBM.enabled", true); | ||||
| user_pref("privacy.history.custom", true); | ||||
| 
 | ||||
| /** SEARCH / URL BAR ***/ | ||||
| user_pref("browser.urlbar.trimHttps", true); | ||||
| user_pref("browser.urlbar.untrimOnUserInteraction.featureGate", true); | ||||
| user_pref("browser.search.separatePrivateDefault.ui.enabled", true); | ||||
| user_pref("browser.urlbar.update2.engineAliasRefresh", true); | ||||
| user_pref("browser.search.suggest.enabled", false); | ||||
| user_pref("browser.urlbar.quicksuggest.enabled", false); | ||||
| user_pref("browser.urlbar.groupLabels.enabled", false); | ||||
| user_pref("browser.formfill.enable", false); | ||||
| user_pref("security.insecure_connection_text.enabled", true); | ||||
| user_pref("security.insecure_connection_text.pbmode.enabled", true); | ||||
| user_pref("network.IDN_show_punycode", true); | ||||
| 
 | ||||
| /** HTTPS-FIRST POLICY ***/ | ||||
| user_pref("dom.security.https_first", true); | ||||
| 
 | ||||
| /** PASSWORDS ***/ | ||||
| user_pref("signon.formlessCapture.enabled", false); | ||||
| user_pref("signon.privateBrowsingCapture.enabled", false); | ||||
| user_pref("network.auth.subresource-http-auth-allow", 1); | ||||
| user_pref("editor.truncate_user_pastes", false); | ||||
| 
 | ||||
| /** MIXED CONTENT + CROSS-SITE ***/ | ||||
| user_pref("security.mixed_content.block_display_content", true); | ||||
| user_pref("pdfjs.enableScripting", false); | ||||
| 
 | ||||
| /** EXTENSIONS ***/ | ||||
| user_pref("extensions.enabledScopes", 5); | ||||
| 
 | ||||
| /** HEADERS / REFERERS ***/ | ||||
| user_pref("network.http.referer.XOriginTrimmingPolicy", 2); | ||||
| 
 | ||||
| /** CONTAINERS ***/ | ||||
| user_pref("privacy.userContext.ui.enabled", true); | ||||
| 
 | ||||
| /** SAFE BROWSING ***/ | ||||
| user_pref("browser.safebrowsing.downloads.remote.enabled", false); | ||||
| 
 | ||||
| /** MOZILLA ***/ | ||||
| user_pref("permissions.default.desktop-notification", 2); | ||||
| user_pref("permissions.default.geo", 2); | ||||
| user_pref("browser.search.update", false); | ||||
| user_pref("permissions.manager.defaultsUrl", ""); | ||||
| 
 | ||||
| /** TELEMETRY ***/ | ||||
| user_pref("datareporting.policy.dataSubmissionEnabled", false); | ||||
| user_pref("datareporting.healthreport.uploadEnabled", false); | ||||
| user_pref("toolkit.telemetry.unified", false); | ||||
| user_pref("toolkit.telemetry.enabled", false); | ||||
| user_pref("toolkit.telemetry.server", "data:,"); | ||||
| user_pref("toolkit.telemetry.archive.enabled", false); | ||||
| user_pref("toolkit.telemetry.newProfilePing.enabled", false); | ||||
| user_pref("toolkit.telemetry.shutdownPingSender.enabled", false); | ||||
| user_pref("toolkit.telemetry.updatePing.enabled", false); | ||||
| user_pref("toolkit.telemetry.bhrPing.enabled", false); | ||||
| user_pref("toolkit.telemetry.firstShutdownPing.enabled", false); | ||||
| user_pref("toolkit.telemetry.coverage.opt-out", true); | ||||
| user_pref("toolkit.coverage.opt-out", true); | ||||
| user_pref("toolkit.coverage.endpoint.base", ""); | ||||
| user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false); | ||||
| user_pref("browser.newtabpage.activity-stream.telemetry", false); | ||||
| 
 | ||||
| /** EXPERIMENTS ***/ | ||||
| user_pref("app.shield.optoutstudies.enabled", false); | ||||
| user_pref("app.normandy.enabled", false); | ||||
| user_pref("app.normandy.api_url", ""); | ||||
| 
 | ||||
| /** CRASH REPORTS ***/ | ||||
| user_pref("breakpad.reportURL", ""); | ||||
| user_pref("browser.tabs.crashReporting.sendReport", false); | ||||
| 
 | ||||
| /** DETECTION ***/ | ||||
| user_pref("captivedetect.canonicalURL", ""); | ||||
| user_pref("network.captive-portal-service.enabled", false); | ||||
| user_pref("network.connectivity-service.enabled", false); | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * SECTION: PESKYFOX                                                        * | ||||
| ****************************************************************************/ | ||||
| /** MOZILLA UI ***/ | ||||
| user_pref("browser.privatebrowsing.vpnpromourl", ""); | ||||
| user_pref("extensions.getAddons.showPane", false); | ||||
| user_pref("extensions.htmlaboutaddons.recommendations.enabled", false); | ||||
| user_pref("browser.discovery.enabled", false); | ||||
| user_pref("browser.shell.checkDefaultBrowser", false); | ||||
| user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false); | ||||
| user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false); | ||||
| user_pref("browser.preferences.moreFromMozilla", false); | ||||
| user_pref("browser.aboutConfig.showWarning", false); | ||||
| user_pref("browser.aboutwelcome.enabled", false); | ||||
| user_pref("browser.profiles.enabled", true); | ||||
| 
 | ||||
| /** THEME ADJUSTMENTS ***/ | ||||
| user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); | ||||
| user_pref("browser.compactmode.show", true); | ||||
| user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
 | ||||
| 
 | ||||
| /** COOKIE BANNER HANDLING ***/ | ||||
| user_pref("cookiebanners.service.mode", 1); | ||||
| user_pref("cookiebanners.service.mode.privateBrowsing", 1); | ||||
| 
 | ||||
| /** FULLSCREEN NOTICE ***/ | ||||
| user_pref("full-screen-api.transition-duration.enter", "0 0"); | ||||
| user_pref("full-screen-api.transition-duration.leave", "0 0"); | ||||
| user_pref("full-screen-api.warning.timeout", 0); | ||||
| 
 | ||||
| /** URL BAR ***/ | ||||
| user_pref("browser.urlbar.suggest.calculator", true); | ||||
| user_pref("browser.urlbar.unitConversion.enabled", true); | ||||
| user_pref("browser.urlbar.trending.featureGate", false); | ||||
| 
 | ||||
| /** NEW TAB PAGE ***/ | ||||
| user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); | ||||
| user_pref("browser.newtabpage.activity-stream.showWeather", false); | ||||
| user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); | ||||
| 
 | ||||
| /** POCKET ***/ | ||||
| user_pref("extensions.pocket.enabled", false); | ||||
| 
 | ||||
| /** DOWNLOADS ***/ | ||||
| user_pref("browser.download.manager.addToRecentDocs", false); | ||||
| 
 | ||||
| /** PDF ***/ | ||||
| user_pref("browser.download.open_pdf_attachments_inline", true); | ||||
| 
 | ||||
| /** TAB BEHAVIOR ***/ | ||||
| user_pref("browser.bookmarks.openInTabClosesMenu", false); | ||||
| user_pref("browser.menu.showViewImageInfo", true); | ||||
| user_pref("findbar.highlightAll", true); | ||||
| user_pref("layout.word_select.eat_space_to_next_word", false); | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * START: MY OVERRIDES                                                      * | ||||
| ****************************************************************************/ | ||||
| // visit https://github.com/yokoffing/Betterfox/wiki/Common-Overrides
 | ||||
| // visit https://github.com/yokoffing/Betterfox/wiki/Optional-Hardening
 | ||||
| // Enter your personal overrides below this line:
 | ||||
| 
 | ||||
| user_pref("browser.display.os-zoom-behavior", 1); | ||||
| user_pref("layout.css.devPixelsPerPx", "-1"); | ||||
| user_pref("ui.textScaleFactor", 85); | ||||
| 
 | ||||
| user_pref("svg.context-properties.content.enabled", true); | ||||
| user_pref("media.videocontrols.picture-in-picture.enable-when-switching-tabs.enabled", true); | ||||
| 
 | ||||
| user_pref("privacy.fingerprintingProtection", true); | ||||
| user_pref("privacy.resistFingerprinting", true); | ||||
| user_pref("privacy.resistFingerprinting.exemptedDomains", "*.pogmom.me,*.pog.mom,app.slack.com"); | ||||
| user_pref("privacy.resistFingerprinting.randomization.daily_reset.enabled", true); | ||||
| user_pref("privacy.resistFingerprinting.randomization.daily_reset.private.enabled", true); | ||||
| 
 | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * SECTION: SMOOTHFOX                                                       * | ||||
| ****************************************************************************/ | ||||
| // visit https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js
 | ||||
| // Enter your scrolling overrides below this line:
 | ||||
| 
 | ||||
| /**************************************************************************** | ||||
|  * END: BETTERFOX                                                           * | ||||
| ****************************************************************************/ | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/development/chrome
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/development/chrome
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/chrome | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/development/user.js
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/development/user.js
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/user.js | ||||
							
								
								
									
										4
									
								
								de/home/.librewolf/installs.ini
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								de/home/.librewolf/installs.ini
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | |||
| [4F96D1932A9F858E] | ||||
| Default=r116e5eg.default-release | ||||
| Locked=1 | ||||
| 
 | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/penelope/chrome
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/penelope/chrome
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/chrome | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/penelope/user.js
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/penelope/user.js
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/user.js | ||||
							
								
								
									
										34
									
								
								de/home/.librewolf/profiles.ini
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								de/home/.librewolf/profiles.ini
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,34 @@ | |||
| [Profile3] | ||||
| Name=Work | ||||
| IsRelative=1 | ||||
| Path=work | ||||
| 
 | ||||
| [Install4F96D1932A9F858E] | ||||
| Default=penelope | ||||
| Locked=1 | ||||
| 
 | ||||
| [Profile1] | ||||
| Name=Development | ||||
| IsRelative=1 | ||||
| Path=development | ||||
| 
 | ||||
| [Profile0] | ||||
| Name=Penelope | ||||
| IsRelative=1 | ||||
| Path=penelope | ||||
| Default=1 | ||||
| 
 | ||||
| [General] | ||||
| StartWithLastProfile=1 | ||||
| Version=2 | ||||
| 
 | ||||
| [Profile4] | ||||
| Name=testing | ||||
| IsRelative=1 | ||||
| Path=testing | ||||
| 
 | ||||
| [Profile2] | ||||
| Name=School | ||||
| IsRelative=1 | ||||
| Path=school | ||||
| 
 | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/school/chrome
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/school/chrome
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/chrome | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/school/user.js
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/school/user.js
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/user.js | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/work/chrome
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/work/chrome
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/chrome | ||||
							
								
								
									
										1
									
								
								de/home/.librewolf/work/user.js
									
										
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								de/home/.librewolf/work/user.js
									
										
									
									
									
										Symbolic link
									
								
							|  | @ -0,0 +1 @@ | |||
| ../config/user.js | ||||
							
								
								
									
										12
									
								
								de/include
									
										
									
									
									
								
							
							
						
						
									
										12
									
								
								de/include
									
										
									
									
									
								
							|  | @ -40,3 +40,15 @@ | |||
| .local/bin/diskspace-check | ||||
| .face | ||||
| .local/bin/aik_launcher | ||||
| .librewolf/profiles.ini | ||||
| .librewolf/installs.ini | ||||
| .librewolf/config/chrome | ||||
| .librewolf/config/user.js | ||||
| .librewolf/penelope/chrome | ||||
| .librewolf/penelope/user.js | ||||
| .librewolf/development/chrome | ||||
| .librewolf/development/user.js | ||||
| .librewolf/school/chrome | ||||
| .librewolf/school/user.js | ||||
| .librewolf/work/chrome | ||||
| .librewolf/work/user.js | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue