Compare commits
No commits in common. "a544feb2a40a737c90ff48284fb311d4d59732da" and "57399433fb09255d71268661130096e43ea53de3" have entirely different histories.
a544feb2a4
...
57399433fb
|
@ -40,10 +40,6 @@
|
||||||
if variant == "Latte"
|
if variant == "Latte"
|
||||||
then "Light"
|
then "Light"
|
||||||
else "Dark";
|
else "Dark";
|
||||||
inverseType =
|
|
||||||
if type == "Light"
|
|
||||||
then "Dark"
|
|
||||||
else "Light";
|
|
||||||
in {
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
|
@ -55,7 +51,7 @@
|
||||||
};
|
};
|
||||||
cursorTheme = {
|
cursorTheme = {
|
||||||
package = pkgs.catppuccin-cursors."${toLower variant}${type}";
|
package = pkgs.catppuccin-cursors."${toLower variant}${type}";
|
||||||
name = "Catppuccin-${variant}-${inverseType}-Cursors";
|
name = "Catppuccin-${variant}-${type}-Cursors";
|
||||||
size = 32;
|
size = 32;
|
||||||
};
|
};
|
||||||
theme = let
|
theme = let
|
||||||
|
|
Reference in a new issue