🔧 (home/firefox) enable vertical tabs and hide titlebar

This commit is contained in:
Laureηt 2024-11-05 23:54:28 +01:00
parent b4f8e18011
commit 63bb88af22
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk

View file

@ -9,7 +9,16 @@
"privacy.donottrackheader.enabled" = true;
"browser.ctrlTab.sortByRecentlyUsed" = true; # change Ctrl+Tab behaviour
"general.autoScroll" = true;
# enable vertical tabs
"sidebar.revamp" = true;
"sidebar.verticalTabs" = true;
"sidebar.visibility" = "hide-sidebar";
};
userChrome = ''
#titlebar {
display: none !important;
}
'';
};
};
};