Switch icon theme to catppuccin-papirus-folders mocha-lavender

Change qt styling to use gtk2, hopefully makes theming a bit more
consistent
This commit is contained in:
Evie Litherland-Smith 2024-03-15 17:15:18 +00:00
parent 441265fd4d
commit fd32f4c101
2 changed files with 12 additions and 9 deletions

View file

@ -47,16 +47,19 @@
tray = "never";
};
};
gtk = {
gtk = with lib.strings; let
accent = "Lavender";
size = "Standard";
in {
enable = true;
iconTheme = {
package = pkgs.candy-icons;
name = "candy-icons";
package = pkgs.catppuccin-papirus-folders.override {
accent = toLower accent;
flavor = toLower catppuccinVariant;
};
name = "Papirus-Dark";
};
theme = let
accent = "Lavender";
size = "Standard";
in {
theme = {
package = with lib.strings;
pkgs.catppuccin-gtk.override {
accents = [(toLower accent)];

View file

@ -53,7 +53,7 @@
gtk.iconCache.enable = true;
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
platformTheme = "gtk2";
style = "gtk2";
};
}