summaryrefslogtreecommitdiff
path: root/home-manager/wayland/modules/zathura.nix
blob: f7b7e4db84cc1aa9777b86178d161e40ce1f0601 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ... }: {
    programs.zathura = {
    enable = true;

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