diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-26 16:09:25 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-26 16:09:25 +0530 |
commit | db62db6d812ccb96ef1f7a68957dd95ec273504c (patch) | |
tree | 30c3f58f89c1ff580b239d8b4dd5d70fb6446f7f /home-manager/wayland/modules/zathura.nix | |
parent | 46f4f7865cd423ea455d27c190f4245b073d0e90 (diff) |
home-manager: gui -> wayland
Diffstat (limited to 'home-manager/wayland/modules/zathura.nix')
-rw-r--r-- | home-manager/wayland/modules/zathura.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home-manager/wayland/modules/zathura.nix b/home-manager/wayland/modules/zathura.nix new file mode 100644 index 0000000..f7b7e4d --- /dev/null +++ b/home-manager/wayland/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"; + }; + }; +} |