home/breakerbox: make zathura breaker

This commit is contained in:
2025-08-22 13:46:01 +02:00
parent 65e357e8ff
commit a788f3c087
2 changed files with 16 additions and 19 deletions

View File

@@ -57,6 +57,7 @@ in
./programs/vscode
./programs/yazi.nix
./programs/yt-dlp.nix
./programs/zathura.nix
./programs/zed
./programs/zoxide.nix
./programs/zsh
@@ -74,7 +75,6 @@ in
] ++ (optionals graphics [
./config/gtk.nix
./programs/zathura.nix
./services/fcitx5.nix
./services/keybase.nix
@@ -147,6 +147,7 @@ in
programs.taskwarrior.enable = graphics;
programs.thunderbird.enable = graphics;
programs.vscode.enable = graphics;
programs.zathura.enable = graphics;
programs.zed-editor.enable = graphics;
services.copyq.enable = graphics;

View File

@@ -1,26 +1,22 @@
{ ... }:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
programs.zathura.options = {
selection-clipboard = "clipboard";
default-bg = "#f2e3bd";
default-bg = "#f2e3bd";
completion-bg = "#f2e3bd";
completion-fg = "#5fd7a7";
completion-bg = "#f2e3bd";
completion-fg = "#5fd7a7";
statusbar-bg = "#f2e3bd";
statusbar-fg = "#008ec4";
statusbar-bg = "#f2e3bd";
statusbar-fg = "#008ec4";
inputbar-bg = "#f2e3bd";
inputbar-fg = "#c30771";
inputbar-bg = "#f2e3bd";
inputbar-fg = "#c30771";
recolor = true;
recolor-lightcolor = "#f2e3bd";
# recolor-darkcolor = "#000000";
recolor-darkcolor = "#101010";
recolor-keephue = true;
};
recolor = true;
recolor-lightcolor = "#f2e3bd";
# recolor-darkcolor = "#000000";
recolor-darkcolor = "#101010";
recolor-keephue = true;
};
}