Reduce size of gtk CSD header bars

This commit is contained in:
Charlotte Van Petegem 2023-04-21 14:31:51 +02:00
parent 025d2f7136
commit 6ecc3d194f
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -59,9 +59,27 @@
gtk-cursor-theme-name = "Vanilla-DMZ"
gtk-cursor-theme-size = 24
'';
gtk3.extraConfig = {
gtk-cursor-theme-name = "Vanilla-DMZ";
gtk-cursor-theme-size = 24;
gtk3 = {
extraConfig = {
gtk-cursor-theme-name = "Vanilla-DMZ";
gtk-cursor-theme-size = 24;
};
extraCss = ''
headerbar {
min-height: 0px;
padding: 0px;
margin: 0px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
min-height: 0px;
padding: 0px;
margin: 0px;
}
'';
};
iconTheme = {
package = pkgs.libsForQt5.breeze-icons;