From 63bb88af22905e040387f5a0f908f3191bb7e9c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Tue, 5 Nov 2024 23:54:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20(home/firefox)=20enable=20vertic?= =?UTF-8?q?al=20tabs=20and=20hide=20titlebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/applications/firefox.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/home/applications/firefox.nix b/home/applications/firefox.nix index 5abb69d..99501f3 100644 --- a/home/applications/firefox.nix +++ b/home/applications/firefox.nix @@ -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; + } + ''; }; }; };