aboutsummaryrefslogtreecommitdiff
path: root/gui/zathura.nix
blob: 41eefbc42151b4d3e2019c069fbbd934ce147fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
    '';
  };
}