Go to file
2025-03-31 13:52:20 -04:00
dot_config improve zsh plugin loading 2025-03-31 12:49:31 -04:00
dot_local update occ user 2025-02-25 09:10:46 -05:00
.chezmoi.yaml.tmpl fix chezmoi diff pager 2024-09-11 09:34:24 -04:00
.chezmoiexternal.toml add alternative location for zsh plugin 2025-03-31 08:33:07 -04:00
.chezmoiignore update ignored files 2025-03-31 12:12:17 -04:00
README.md add note to Firefox instructions 2025-03-31 13:52:20 -04:00

Miscellaneous topics that I'm too lazy to script

Firefox with tree-style tabs

  1. Go to about:config in Firefox and make sure all of these are enabled/true (as of 136, it appears the only one needed is the first):
toolkit.legacyUserProfileCustomizations.stylesheets
layers.acceleration.force-enabled
gfx.webrender.all
gfx.webrender.enabled
layout.css.backdrop-filter.enabled
svg.context-properties.content.enabled
  1. Close Firefox.
  2. Create the file <firefox profile>/chrome/userChrome.css in the Firefox profile directory (there may be multiple directories, one will only have one file called times.json, this is the wrong one, choose the other one):
    • Windows: %AppData%/Mozilla/Firefox/Profiles
    • Linux: ~/.mozilla/firefox
#TabsToolbar
{
        visibility: collapse;
}
  1. Open Firefox and confirm the top bar is gone. To enable the title bar, go to Menu -> More Tools -> Customize toolbar... and check "Title Bar" in the bottom-left corner.