Top bar stays hidden, but url bar / search bar appear when I press ctrl+l / ctrl+k. Likely need to tweak css to your likings, and you need to set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config to enable userChrome.css (you can find various guides on that if needed)
/* Kinda unrelated, but I'm using this to go with Sidebery / Tree Style Tab */
#TabsToolbar { visibility: collapse; }
/* Hide the whole top bar */
#nav-bar {
}#urlbar-container:focus-within, #search-container:focus-within {
}Top bar stays hidden, but url bar / search bar appear when I press ctrl+l / ctrl+k. Likely need to tweak css to your likings, and you need to set toolkit.legacyUserProfileCustomizations.stylesheets to true in about:config to enable userChrome.css (you can find various guides on that if needed)