firefox: update userchrome

This commit is contained in:
Leonardo Eugênio 2025-03-28 20:22:34 -03:00
parent 0a0b8f9e61
commit 921413f545
No known key found for this signature in database
GPG key ID: 2F8F21CE8721456B

View file

@ -2,15 +2,22 @@
config,
pkgs,
lib,
font,
...
}:
let
inherit (config.my) desktop browser;
inherit (config.my) desktop;
inherit (config.my.theme) color;
bugfixedFirefox = pkgs.firefox-devedition-unwrapped // {
requireSigning = false;
allowAddonSideload = true;
};
swayCustomization = ''
#titlebar { display: none !important; }
#TabsToolbar { display: none !important; }
#sidebar-header { display: none !important; }
'';
in
{
config = {
@ -119,15 +126,17 @@ in
"devtools.chrome.enabled" = true;
"devtools.debugger.remote-enabled" = true;
};
userChrome =
if desktop == "sway" then
''
#titlebar { display: none !important; }
#TabsToolbar { display: none !important; }
#sidebar-header { display: none !important; }
''
else
"";
userChrome = ''
${lib.optionalString (desktop == "sway") swayCustomization}
#sidebar-main {
background-color: ${color.bg};
}
#tabbrowser-tabbox {
outline-width: 0 !important;
}
'';
};
};
};