In Firefox 144, I can open vertical tabs and use Sidebery, but Firefox sidebar remains open on the side. I can remove it by setting always-show and hide-sidebar in config, but it reappears every time I restart.

Is there a way to permanently disable it?

  • shishka_b0b@lemmy.zip
    link
    fedilink
    arrow-up
    6
    ·
    2 days ago

    Put the config settings in a user.js file and save it in the root directory of your Firefox profile. It should look something like this:

    user_pref("always-show.config.setting", false);
    user_pref("hide-sidebar.config.setting", true);
    
      • shishka_b0b@lemmy.zip
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        2 days ago

        I wasn’t sure what the actual preference name was so the code I gave you wasn’t accurate. This is exactly what you need in the user.js file:

        user_pref("sidebar.visibility", "hide-sidebar");
        

        It didn’t seem to work the first time I restarted Firefox even though the value for sidebar.visibility was changed correcty in about:config so I edited it back to always-show and then right back to hide-sidebar and now the sidebar remains hidden on startup

        Edit: typo