updates
This commit is contained in:
parent
a3283256b4
commit
cfc82b3817
26 changed files with 172 additions and 1673 deletions
|
@ -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é";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue