feat(gtk): add cursor theming support (#61)
This commit is contained in:
parent
714c415506
commit
f3aaec142f
2 changed files with 41 additions and 20 deletions
|
@ -23,26 +23,43 @@ in
|
||||||
default = [ "normal" ];
|
default = [ "normal" ];
|
||||||
description = "Catppuccin tweaks for gtk";
|
description = "Catppuccin tweaks for gtk";
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
config.gtk.theme =
|
cursor = ctp.mkCatppuccinOpt "gtk cursors"
|
||||||
let
|
// {
|
||||||
flavourUpper = ctp.mkUpper cfg.flavour;
|
accent = ctp.mkAccentOpt "gtk cursors";
|
||||||
accentUpper = ctp.mkUpper cfg.accent;
|
|
||||||
sizeUpper = ctp.mkUpper cfg.size;
|
|
||||||
|
|
||||||
# use the light gtk theme for latte
|
|
||||||
gtkTheme =
|
|
||||||
if cfg.flavour == "latte"
|
|
||||||
then "Light"
|
|
||||||
else "Dark";
|
|
||||||
in
|
|
||||||
lib.mkIf enable {
|
|
||||||
name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}";
|
|
||||||
package = pkgs.catppuccin-gtk.override {
|
|
||||||
inherit (cfg) size tweaks;
|
|
||||||
accents = [ cfg.accent ];
|
|
||||||
variant = cfg.flavour;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
config.gtk = lib.mkIf enable {
|
||||||
|
theme =
|
||||||
|
let
|
||||||
|
flavourUpper = ctp.mkUpper cfg.flavour;
|
||||||
|
accentUpper = ctp.mkUpper cfg.accent;
|
||||||
|
sizeUpper = ctp.mkUpper cfg.size;
|
||||||
|
|
||||||
|
# use the light gtk theme for latte
|
||||||
|
gtkTheme =
|
||||||
|
if cfg.flavour == "latte"
|
||||||
|
then "Light"
|
||||||
|
else "Dark";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
name = "Catppuccin-${flavourUpper}-${sizeUpper}-${accentUpper}-${gtkTheme}";
|
||||||
|
package = pkgs.catppuccin-gtk.override {
|
||||||
|
inherit (cfg) size tweaks;
|
||||||
|
accents = [ cfg.accent ];
|
||||||
|
variant = cfg.flavour;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
cursorTheme =
|
||||||
|
let
|
||||||
|
flavourUpper = ctp.mkUpper cfg.cursor.flavour;
|
||||||
|
accentUpper = ctp.mkUpper cfg.cursor.accent;
|
||||||
|
in
|
||||||
|
lib.mkIf cfg.cursor.enable {
|
||||||
|
name = "Catppuccin-${flavourUpper}-${accentUpper}";
|
||||||
|
package = pkgs.catppuccin-cursors.${cfg.cursor.flavour + accentUpper};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
6
test.nix
6
test.nix
|
@ -69,7 +69,11 @@ in
|
||||||
zathura = ctpEnable;
|
zathura = ctpEnable;
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk = ctpEnable;
|
gtk =
|
||||||
|
ctpEnable
|
||||||
|
// {
|
||||||
|
catppuccin.cursor.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
mako = ctpEnable;
|
mako = ctpEnable;
|
||||||
|
|
Loading…
Reference in a new issue