From 8f5b516269324d702980c18f1c5f57303863945d Mon Sep 17 00:00:00 2001 From: uncenter <47499684+uncenter@users.noreply.github.com> Date: Sun, 27 Oct 2024 09:26:57 -0400 Subject: [PATCH] feat(home-manager): update yazi for accent support --- .sources/sources.json | 6 +++--- modules/home-manager/yazi.nix | 6 ++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.sources/sources.json b/.sources/sources.json index 4ce9e032..af19abec 100644 --- a/.sources/sources.json +++ b/.sources/sources.json @@ -476,9 +476,9 @@ "repo": "yazi" }, "branch": "main", - "revision": "37dec9bf1f7e52e0d593c225827b9dbc71ce504c", - "url": "https://github.com/catppuccin/yazi/archive/37dec9bf1f7e52e0d593c225827b9dbc71ce504c.tar.gz", - "hash": "1dfakxd5fd1z17bf2l4a48wmal9pk9ybc0zxwnmvjaqj2gd3k6m0" + "revision": "54d868433a0c2f3e1651114136ea088eef72a4a7", + "url": "https://github.com/catppuccin/yazi/archive/54d868433a0c2f3e1651114136ea088eef72a4a7.tar.gz", + "hash": "08rml9np5qqvnqyrhhfj515mddfzqbxrxalscm5kswnj5mfx5ibl" }, "zathura": { "type": "Git", diff --git a/modules/home-manager/yazi.nix b/modules/home-manager/yazi.nix index 87bdeff0..3a1a6658 100644 --- a/modules/home-manager/yazi.nix +++ b/modules/home-manager/yazi.nix @@ -6,10 +6,12 @@ let enable = cfg.enable && config.programs.yazi.enable; in { - options.programs.yazi.catppuccin = lib.ctp.mkCatppuccinOpt { name = "yazi"; }; + options.programs.yazi.catppuccin = lib.ctp.mkCatppuccinOpt { name = "yazi"; } // { + accent = lib.ctp.mkAccentOpt "yazi"; + }; config = lib.mkIf enable { - programs.yazi.theme = lib.importTOML "${sources.yazi}/themes/${cfg.flavor}.toml"; + programs.yazi.theme = lib.importTOML "${sources.yazi}/themes/${cfg.flavor}/catppuccin-${cfg.flavor}-${cfg.accent}.toml"; xdg.configFile."yazi/Catppuccin-${cfg.flavor}.tmTheme".source = "${sources.bat}/themes/Catppuccin ${lib.ctp.mkUpper cfg.flavor}.tmTheme"; }; }