diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-17 21:55:50 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-17 22:00:07 +0530 |
commit | 92f6bc769cb91793e1d632ee4a90c196ba5a4a28 (patch) | |
tree | 91605e96fe9f401767394941462277c716988b4f /home-manager/gui/modules | |
parent | 68632f8c1797477abdfebc148e73b54a203861e8 (diff) |
home-manager/zathura: init
Diffstat (limited to 'home-manager/gui/modules')
-rw-r--r-- | home-manager/gui/modules/zathura.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home-manager/gui/modules/zathura.nix b/home-manager/gui/modules/zathura.nix new file mode 100644 index 0000000..f7b7e4d --- /dev/null +++ b/home-manager/gui/modules/zathura.nix @@ -0,0 +1,15 @@ +{ ... }: { + programs.zathura = { + enable = true; + + mappings = { + "f" = "toggle_fullscreen"; + "[fullscreen] f" = "toggle_fullscreen"; + }; + options = { + "font" = "Sans"; + "statusbar-basename" = true; + "selection-clipboard" = "clipboard"; + }; + }; +} |