summaryrefslogtreecommitdiff
path: root/home-manager/modules/aesthetics/targets
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-10-19 19:51:51 -0400
committertriethyl <triethylammonium@pm.me>2025-10-19 19:51:51 -0400
commit37b93dc5f4fe3de79daad559d6d7c6fef3386f34 (patch)
tree21cf65ffb0f0631f371349ad225d393b3aa6f11f /home-manager/modules/aesthetics/targets
parent9d929275cadf393b5dcce986cc5280755d373f6a (diff)
aesthetics: edited gtk target
Diffstat (limited to 'home-manager/modules/aesthetics/targets')
-rw-r--r--home-manager/modules/aesthetics/targets/gtk.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/home-manager/modules/aesthetics/targets/gtk.nix b/home-manager/modules/aesthetics/targets/gtk.nix
index 795365d..ef783a7 100644
--- a/home-manager/modules/aesthetics/targets/gtk.nix
+++ b/home-manager/modules/aesthetics/targets/gtk.nix
@@ -96,6 +96,15 @@
@define-color dark_3 #${base01};
@define-color dark_4 #${base01};
@define-color dark_5 #${base01};
+
+ headerbar button.titlebutton.close {
+ min-width: 0;
+ min-height: 0;
+ padding: 0;
+ margin: 0;
+ border: none;
+ opacity: 0;
+ }
'';
in {
options.aesthetics.targets.gtk.enable = lib.mkOption {
@@ -110,6 +119,12 @@ in {
package = pkgs.adw-gtk3;
name = "adw-gtk3";
};
+ gtk3.extraConfig = {
+ gtk-decoration-layout = "appmenu:none";
+ };
+ gtk4.extraConfig = {
+ gtk-decoration-layout = "appmenu:none";
+ };
};
xdg.configFile = {
"gtk-3.0/gtk.css".text = gtkCSS;