GTK LETS GOOO

This commit is contained in:
Benjamin Palko 2024-07-24 20:37:40 -04:00
parent af93df5181
commit 643cc5e19b

View file

@ -8,15 +8,22 @@
gtk4.extraConfig = { gtk4.extraConfig = {
gtk-application-prefer-dark-theme = 1; gtk-application-prefer-dark-theme = 1;
}; };
theme = { theme = {
package = pkgs.whitesur-gtk-theme; name = "WhiteSur-Dark";
name = "Whitesur-dark"; package = pkgs.whitesur-gtk-theme.override {
colorVariants = [ "Dark" ];
opacityVariants = [ "normal" ];
darkerColor = true;
};
};
cursorTheme = {
name = "Volantes_cursors";
package = pkgs.volantes-cursors;
}; };
iconTheme = { iconTheme = {
package = pkgs.whitesur-icon-theme; name = "WhiteSur-dark";
name = "Whitesur-Dark"; package = pkgs.whitesur-icon-theme.override { themeVariants = [ "default" ]; };
}; };
}; };
home.sessionVariables.GTK_THEME = "WhiteSur-Dark";
} }