From 15b231a157108f6f2a10d209dd51f4d1676585c3 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 10 May 2023 11:41:46 -0400 Subject: [PATCH] feat: Add zathura config Note that loading a runtime file in ~/.cache/wal is no longer necessary since configuration is done declaratively through Nix. Although this has some downsides, such as the lack of "live reloading" in some applications, this "feature" wasn't present across all applications anyway. --- modules/desktop.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/desktop.nix b/modules/desktop.nix index feeef4a2..7e734720 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -63,5 +63,15 @@ mouse.hide_when_typing = true; }; }; + programs.zathura = { + enable = true; + options = { + guioptions = "v"; + adjust-open = "width"; + statusbar-basename = true; + render-loading = false; + scroll-step = 120; + }; + }; }; }