Revert "Remove zathura"

This reverts commit 961cc0df66.
This commit is contained in:
Daniel Siepmann 2022-08-22 15:29:32 +02:00
parent 61f72eeb79
commit 4ad7d5caf9
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 36 additions and 0 deletions

View file

@ -43,6 +43,9 @@ in {
ssh = import ./programs/ssh.nix {
};
zathura = import ./programs/zathura.nix {
};
firefox = import ./programs/firefox.nix {
};

33
home/programs/zathura.nix Normal file
View file

@ -0,0 +1,33 @@
_:
{
enable = true;
options = {
font = "monospace 14";
default-bg = "#2e3436";
default-fg = "#9cd9f0";
completion-bg = "#000000";
completion-fg = "#9cd9f0";
completion-group-bg = "#000000";
completion-group-fg = "#9cd9f0";
completion-completion-bg = "#000000";
completion-completion-fg = "#9cd9f0";
inputbar-bg = "#2e3436";
inputbar-fg = "#9cd9f0";
statusbar-bg = "#2e3436";
statusbar-fg = "#9cd9f0";
render-loading-bg = "#2e3436";
render-loading-fg = "#9cd9f0";
window-title-basename = true;
statusbar-basename = true;
statusbar-page-percent = true;
page-padding = 14;
selection-clipboard = "clipboard";
# Seems to break start of app, nothing happens
# sandbox = "strict";
};
}