From 8ffe5ce23fa1548304a3fa25f2bd0e89837f5a0b Mon Sep 17 00:00:00 2001 From: Minijackson Date: Sun, 18 Apr 2021 16:58:23 +0200 Subject: revamp with nix flakes + desktop config --- usecases/desktop/graphical/zathura.nix | 55 ++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 usecases/desktop/graphical/zathura.nix (limited to 'usecases/desktop/graphical/zathura.nix') diff --git a/usecases/desktop/graphical/zathura.nix b/usecases/desktop/graphical/zathura.nix new file mode 100644 index 0000000..d1832d8 --- /dev/null +++ b/usecases/desktop/graphical/zathura.nix @@ -0,0 +1,55 @@ +inputs: + +{ config, ... }: + +{ + home-manager.users.minijackson.programs.zathura = { + enable = true; + + options = with config.theme.colors; { + guioptions = ""; + adjust-open = "width"; + + smooth-scroll = true; + scroll-step = 100; + #scroll-full-overlap = 0.05; + + selection-clipboard = "clipboard"; + + default-bg = softBackground; + default-fg = foreground; + + notification-error-bg = neutralRed; + notification-error-fg = foreground; + + notification-warning-bg = background; + notification-warning-fg = brightRed; + + highlight-color = fadedYellow; + highlight-active-color = brightYellow; + + inputbar-bg = background; + inputbar-fg = dominant; + + completion-bg = background; + completion-fg = neutralBlue; + + completion-highlight-bg = dominant; + completion-highlight-fg = background; + + notification-bg = dominant; + notification-fg = background; + + index-bg = background; + index-fg = foreground; + + index-active-bg = dominant; + index-active-fg = background; + + recolor-lightcolor = background; + recolor-darkcolor = foreground; + recolor-keephue = true; + recolor = true; + }; + }; +} -- cgit v1.2.3