Comment by diggan

Comment by diggan 11 hours ago

0 replies

> how do you stop seeing multiple tab strips

Easy, change the userChrome.css to this:

    $ cat ~/.mozilla/firefox/$profile.default/chrome/userChrome.css

    #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
      opacity: 0;
      pointer-events: none;
    }
    #main-window:not([tabsintitlebar="true"]) #TabsToolbar {
        visibility: collapse !important;
    }
Replace "$profile.default" in the path with your actual profile.