Remove GTK4 window buttons

This commit is contained in:
Elnu 2022-10-16 13:19:05 -07:00
parent 7c1ab9bcdb
commit a427c8d48a

View file

@ -30,8 +30,11 @@ in
name = "${themeName}"; name = "${themeName}";
package = "${theme}"; package = "${theme}";
}; };
# Remove minimize, maximize, and close buttons
gtk3.extraConfig = { gtk3.extraConfig = {
# Remove minimize, maximize, and close buttons gtk-decoration-layout = "appmenu:none";
};
gtk4.extraConfig = {
gtk-decoration-layout = "appmenu:none"; gtk-decoration-layout = "appmenu:none";
}; };
}; };