Skip to content

Instantly share code, notes, and snippets.

@oblitum
Last active October 13, 2020 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oblitum/eb66b147a834f4f385fa9e79df7ecb88 to your computer and use it in GitHub Desktop.
Save oblitum/eb66b147a834f4f385fa9e79df7ecb88 to your computer and use it in GitHub Desktop.
Firefox settings
Enable toolkit.legacyUserProfileCustomizations.stylesheets in about:config.
In the ~/.mozilla/firefox/<profile>/chrome directory, copy userChrome.css and userContent.css bellow
and clone https://github.com/MrOtherGuy/firefox-csshacks.git. This is to auto-hide the tab/address/bookmark bars,
leaving just the main content and the thinner scrollbars (from Dark Scroll). It also hides the status with links,
which may be displayed through Link Status Redux instead.
Some must have extensions:
- Dark Reader (for dark mode)
- Dark Scroll (for much nicer scroll bars)
- Link Status Redux (configure "Bottom-left corner" for "Position of the popup")
- SurfingKeys (for vi mode)
- PassFF
- uBlock Origin
- cliget
- HTTPS Everywhere
- To Google Translate
- Bypass Paywalls
@import url("firefox-csshacks/chrome/autohide_toolbox.css");
#statuspanel[type="overLink"] {
display: none !important;
}
#statuspanel[type="overLink"],
#statuspanel[inactive][previoustype="overLink"] {
-moz-transition: none !important;
}
browser[type="content-primary"],
browser[type="content"] {
background: #1e2132 !important;
}
@import url("firefox-csshacks/content/dark_settings_pages.css");
@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing") {
body{background-color: #1e2132 !important;}
.card{background-color: #191c25 !important;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment