From b06175839df2ee506feac785d6e0df4796e44017 Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Sat, 26 Oct 2024 08:58:22 +0700 Subject: [PATCH] chore(nix/floorp): Default settings --- .config/nix/modules/home-manager/floorp.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.config/nix/modules/home-manager/floorp.nix b/.config/nix/modules/home-manager/floorp.nix index 8d55503..12924f1 100644 --- a/.config/nix/modules/home-manager/floorp.nix +++ b/.config/nix/modules/home-manager/floorp.nix @@ -7,6 +7,15 @@ package = null; # we only want the config profiles.${vars.name} = { userChrome = builtins.readFile ../../files/floorp/userChrome.css; + settings = { + "browser.toolbars.bookmarks.visibility" = "newtab"; + "floorp.browser.sidebar.is.displayed" = false; + "floorp.browser.tabbar.settings" = 2; + "floorp.browser.tabs.verticaltab" = true; + "floorp.browser.tabs.verticaltab.width" = 208; + "floorp.verticaltab.hover.enabled" = true; + "floorp.tabbar.style" = 2; + }; }; }; }