From a427c8d48a876e3117fa34c9a4354d51198ea55e Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sun, 16 Oct 2022 13:19:05 -0700 Subject: [PATCH] Remove GTK4 window buttons --- hosts/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/home.nix b/hosts/home.nix index aa20ccf..d7154a0 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -30,8 +30,11 @@ in name = "${themeName}"; package = "${theme}"; }; + # Remove minimize, maximize, and close buttons gtk3.extraConfig = { - # Remove minimize, maximize, and close buttons + gtk-decoration-layout = "appmenu:none"; + }; + gtk4.extraConfig = { gtk-decoration-layout = "appmenu:none"; }; };