From 4ca6b4c8aad829d88bf3b50b8e561f5c6aee3bfd Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Wed, 24 Apr 2024 17:52:51 -0400 Subject: [PATCH] add README --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a738457 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# 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: +``` +toolkit.legacyUserProfileCustomizations.stylesheets +layers.acceleration.force-enabled +gfx.webrender.all +gfx.webrender.enabled +layout.css.backdrop-filter.enabled +svg.context-properties.content.enabled +``` +2. Close Firefox. +3. Create the file `/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; +} +``` +4. 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.