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,10 +59,28 @@
gtk-cursor-theme-name = "Vanilla-DMZ" gtk-cursor-theme-name = "Vanilla-DMZ"
gtk-cursor-theme-size = 24 gtk-cursor-theme-size = 24
''; '';
gtk3.extraConfig = { gtk3 = {
extraConfig = {
gtk-cursor-theme-name = "Vanilla-DMZ"; gtk-cursor-theme-name = "Vanilla-DMZ";
gtk-cursor-theme-size = 24; 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 = { iconTheme = {
package = pkgs.libsForQt5.breeze-icons; package = pkgs.libsForQt5.breeze-icons;
name = "breeze"; name = "breeze";