feat(btop): Catppuccin -> Rose Pine
This commit is contained in:
parent
3a829096c2
commit
04374c0bc2
2 changed files with 19 additions and 14 deletions
|
@ -40,13 +40,13 @@
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "GitHub",
|
"type": "GitHub",
|
||||||
"owner": "catppuccin",
|
"owner": "rose-pine",
|
||||||
"repo": "btop"
|
"repo": "btop"
|
||||||
},
|
},
|
||||||
"branch": "main",
|
"branch": "main",
|
||||||
"revision": "21b8d5956a8b07fa52519e3267fb3a2d2e693d17",
|
"revision": "6d6abdc0a8c8bcd3b056d9fe3256cfbe7e359312",
|
||||||
"url": "https://github.com/catppuccin/btop/archive/21b8d5956a8b07fa52519e3267fb3a2d2e693d17.tar.gz",
|
"url": "https://github.com/rose-pine/btop/archive/6d6abdc0a8c8bcd3b056d9fe3256cfbe7e359312.tar.gz",
|
||||||
"hash": "1hdh78314axpz96qvnl7dkgjd3b7sjq0l8k5h1iwir1mjz596xsi"
|
"hash": "15s3llr9snrg30fh39a2gfzmjd8p5ki8vaggznm9jirjzdhm0a5i"
|
||||||
},
|
},
|
||||||
"cava": {
|
"cava": {
|
||||||
"type": "Git",
|
"type": "Git",
|
||||||
|
|
|
@ -1,18 +1,23 @@
|
||||||
{ config, lib, ... }:
|
{
|
||||||
let
|
config,
|
||||||
inherit (config.catppuccin) sources;
|
lib,
|
||||||
cfg = config.programs.btop.catppuccin;
|
...
|
||||||
|
}: let
|
||||||
|
inherit (config.rose-pine) sources;
|
||||||
|
cfg = config.programs.btop.rose-pine;
|
||||||
enable = cfg.enable && config.programs.btop.enable;
|
enable = cfg.enable && config.programs.btop.enable;
|
||||||
|
|
||||||
themeFile = "catppuccin_${cfg.flavor}.theme";
|
themeFile =
|
||||||
themePath = "/themes/${themeFile}";
|
if (cfg.flavor == "main")
|
||||||
|
then "rose-pine.theme"
|
||||||
|
else "rose-pine-${cfg.flavor}.theme";
|
||||||
|
themePath = "/${themeFile}";
|
||||||
theme = sources.btop + themePath;
|
theme = sources.btop + themePath;
|
||||||
in
|
in {
|
||||||
{
|
options.programs.btop.rose-pine = lib.rp.mkRosePineOpt {name = "btop";};
|
||||||
options.programs.btop.catppuccin = lib.ctp.mkCatppuccinOpt { name = "btop"; };
|
|
||||||
|
|
||||||
config = lib.mkIf enable {
|
config = lib.mkIf enable {
|
||||||
xdg.configFile."btop${themePath}".source = theme;
|
xdg.configFile."btop/themes${themePath}".source = theme;
|
||||||
|
|
||||||
programs.btop.settings.color_theme = themeFile;
|
programs.btop.settings.color_theme = themeFile;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue