From 913fe50e3ec3e63df7c4fc7c56827d204991581a Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 26 Jan 2019 21:56:44 +0100 Subject: Add Zathura config --- gui/default.nix | 1 + gui/zathura.nix | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 gui/zathura.nix 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"; + }; + }; +} -- cgit v1.2.3