This commit is contained in:
Vivian 2024-07-07 10:08:10 +02:00
parent a3283256b4
commit cfc82b3817
26 changed files with 172 additions and 1673 deletions

View file

@ -26,6 +26,11 @@ in
enable = mkEnableOption "catppuccin";
};
config = mkIf cfg.enable {
catppuccin = {
flavor = "frappe";
accent = "pink";
};
home.pointerCursor = {
name = "Bibata_Ghost";
size = 24;
@ -39,14 +44,15 @@ in
gtk = {
enable = true;
theme = {
name = "Catppuccin-Frappe-Standard-Pink-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
variant = "frappe";
size = "standard";
};
};
# theme = {
# name = "Catppuccin-Frappe-Standard-Pink-Dark";
# package = pkgs.catppuccin-gtk.override {
# accents = [ "pink" ];
# variant = "frappe";
# size = "standard";
# };
# };
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme.override { color = "violet"; };
@ -56,31 +62,34 @@ in
};
};
qt = {
enable = true;
platformTheme = "qtct";
style.name = "kvantum";
};
# qt = {
# enable = true;
# # platformTheme = "qtct";
# style.name = "kvantum";
# platformTheme.name = "kvantum";
# };
xdg.configFile = {
"Kvantum/kvantum.kvconfig".text = ''
[General]
theme=Catppuccin-Frappe-Pink
'';
};
# xdg.configFile = {
# "Kvantum/kvantum.kvconfig".text = ''
# [General]
# theme=Catppuccin-Frappe-Pink
# '';
# };
home.packages = with pkgs; [
(catppuccin-kvantum.override {
accent = "Pink";
variant = "Frappe";
})
# (catppuccin-kvantum.override {
# accent = "Pink";
# variant = "Frappe";
# })
];
programs.mako.extraConfig = readFile "${mako}/src/frappe";
programs.starship.settings = {
palette = "catppuccin_frappe";
} //fromTOML (readFile "${starship}/palettes/frappe.toml");
services.mako.catppuccin.enable = true;
# programs.mako.extraConfig = readFile "${mako}/src/frappe";
#
# programs.starship.settings = {
# palette = "catppuccin_frappe";
# } //fromTOML (readFile "${starship}/palettes/frappe.toml");
#
programs.vscode = {
userSettings."workbench.colorTheme" = "Catppuccin Frappé";