summaryrefslogblamecommitdiff
path: root/home/wayland/modules/zathura.nix
blob: 8437e80ee19ffd4db7827e14bdee5d7c4418f09c (plain) (tree)
1
2
3
4
5
6
7
8
9
               







                                             


                                        
                          


      
{ lib, ... }: {
    programs.zathura = {
    enable = true;

    mappings = {
      "f" = "toggle_fullscreen";
      "[fullscreen] f" = "toggle_fullscreen";
    };
    options = {
      font = lib.mkDefault "Sans";
      statusbar-basename = true;
      selection-clipboard = "clipboard";
      database = "sqlite";
    };
  };
}