diff options
-rw-r--r-- | gui/default.nix | 1 | ||||
-rw-r--r-- | gui/zathura.nix | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/gui/default.nix b/gui/default.nix index e11f772..9ada0be 100644 --- a/gui/default.nix +++ b/gui/default.nix @@ -5,6 +5,7 @@ ./xmonad.nix ./kitty.nix ./vim.nix + ./zathura.nix # applications grouped by purpose ./apps/file.nix ./apps/web.nix diff --git a/gui/zathura.nix b/gui/zathura.nix new file mode 100644 index 0000000..3c4643f --- /dev/null +++ b/gui/zathura.nix @@ -0,0 +1,26 @@ +{ pkgs, ... }: + +{ + programs.zathura = { + enable = true; + + options = { + font = "Iosevka 14px"; + + inputbar-bg = "#161616"; + inputbar-fg = "#909737"; + + statusbar-bg = "#161616"; + statusbar-fg = "#909737"; + + completion-bg = "#161616"; + completion-fg = "#909737"; + + completion-highlight-bg = "#909737"; + completion-highlight-fg = "#161616"; + + recolor-lightcolor = "#161616"; + recolor-darkcolor = "#ffffff"; + }; + }; +} |