dotfiles/nixpkgs/programs/zathura.nix

27 lines
517 B
Nix
Raw Normal View History

2021-12-08 16:26:56 +01:00
{ ... }:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
default-bg = "#f2e3bd";
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
completion-bg = "#f2e3bd";
completion-fg = "#5fd7a7";
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
statusbar-bg = "#f2e3bd";
statusbar-fg = "#008ec4";
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
inputbar-bg = "#f2e3bd";
inputbar-fg = "#c30771";
2021-12-11 15:29:12 +01:00
2021-12-08 16:26:56 +01:00
recolor = true;
recolor-lightcolor = "#f2e3bd";
# recolor-darkcolor = "#000000";
recolor-darkcolor = "#101010";
recolor-keephue = true;
};
};
}