feat(zathura): Catppuccin -> Rose Pine

This commit is contained in:
punkfairie 2024-10-20 13:33:39 -07:00
parent 31ec365509
commit 1995683357
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 21 additions and 14 deletions

View file

@ -364,13 +364,13 @@
"type": "Git", "type": "Git",
"repository": { "repository": {
"type": "GitHub", "type": "GitHub",
"owner": "catppuccin", "owner": "edunfelt",
"repo": "zathura" "repo": "zathura"
}, },
"branch": "main", "branch": "main",
"revision": "0adc53028d81bf047461bc61c43a484d11b15220", "revision": "d72c431f8207a1f63c138d9bc64d689947c55e8e",
"url": "https://github.com/catppuccin/zathura/archive/0adc53028d81bf047461bc61c43a484d11b15220.tar.gz", "url": "https://github.com/edunfelt/zathura/archive/d72c431f8207a1f63c138d9bc64d689947c55e8e.tar.gz",
"hash": "1cj1z2bh1qw1sbgqmk4i450yv7rgwcz06yhar23ccadsx22gzw7y" "hash": "07b5pqdpd0qnhc223gmgw0nxy0wjbrkw6a36jdd03lyxvvhhx86r"
}, },
"zsh-syntax-highlighting": { "zsh-syntax-highlighting": {
"type": "Git", "type": "Git",
@ -386,5 +386,4 @@
} }
}, },
"version": 3 "version": 3
} }

View file

@ -1,13 +1,21 @@
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
cfg = config.programs.zathura.catppuccin;
enable = cfg.enable && config.programs.zathura.enable;
in
{ {
options.programs.zathura.catppuccin = lib.ctp.mkCatppuccinOpt { name = "zathura"; }; config,
lib,
...
}: let
inherit (config.rose-pine) sources;
cfg = config.programs.zathura.rose-pine;
enable = cfg.enable && config.programs.zathura.enable;
themeName =
if (cfg.flavor == "main")
then "rose-pine"
else "rose-pine-${cfg.flavor}";
in {
options.programs.zathura.rose-pine = lib.rp.mkRosePineOpt {name = "zathura";};
config.programs.zathura.extraConfig = lib.mkIf enable '' config.programs.zathura.extraConfig = lib.mkIf enable ''
include ${sources.zathura + "/src/catppuccin-${cfg.flavor}"} include ${sources.zathura + "/${themeName}"}
''; '';
} }