From dea9a66fccca94ed27387246e384f3dcb20501f6 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 5 May 2018 13:02:04 +0200 Subject: Basic attempt at a better structure --- gui/zathura.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 gui/zathura.nix (limited to 'gui/zathura.nix') diff --git a/gui/zathura.nix b/gui/zathura.nix new file mode 100644 index 0000000..41eefbc --- /dev/null +++ b/gui/zathura.nix @@ -0,0 +1,26 @@ +{ pkgs, ... }: + +{ + home = { + packages = [ pkgs.zathura ]; + + file.".config/zathura/zathurarc".text = '' + set font "Iosevka 14px" + + set inputbar-bg "#161616" + set inputbar-fg "#909737" + + set statusbar-bg "#161616" + set statusbar-fg "#909737" + + set completion-bg "#161616" + set completion-fg "#909737" + + set completion-highlight-bg "#909737" + set completion-highlight-fg "#161616" + + set recolor-lightcolor "#161616" + set recolor-darkcolor "#ffffff" + ''; + }; +} -- cgit v1.2.3