fix: repair GTK theme and gnome-shell theme

Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
Jo 2024-07-03 08:28:12 +02:00
parent 674e20233b
commit ce89240d04
13 changed files with 136 additions and 73 deletions

View file

@ -5,13 +5,13 @@
lib,
...
}: {
imports = [
inputs.catppuccin.homeManagerModules.catppuccin
];
catppuccin = {
enable = true;
accent = "blue";
flavor = "frappe";
pointerCursor.enable = true;
pointerCursor.accent = "blue";
pointerCursor.flavor = "frappe";
};
}
}

View file

@ -5,8 +5,30 @@
lib,
...
}: {
gtk = {
gtk = with pkgs; {
enable = true;
font = {
name = "Cantarell";
size = 12;
package = cantarell-fonts;
};
catppuccin = {
icon.enable = true;
icon.accent = "blue";
icon.flavor = "frappe";
};
theme = {
name = "Colloid-Dark-Catppuccin";
package = colloid-gtk-theme.override {
themeVariants = ["default"];
colorVariants = ["dark"];
sizeVariants = ["standard"];
tweaks = ["catppuccin"];
};
};
};
dconf.settings = {
@ -17,8 +39,8 @@
};
"org/gnome/shell/extensions/user-theme" = {
name = "Catppuccin-Frappe-Standard-Blue-Dark";
name = "Colloid-Dark-Catppuccin";
};
# ---------------------- Theming END
};
}
}