From 92f6bc769cb91793e1d632ee4a90c196ba5a4a28 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Sun, 17 Mar 2024 21:55:50 +0530 Subject: home-manager/zathura: init --- home-manager/gui/modules/zathura.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 home-manager/gui/modules/zathura.nix (limited to 'home-manager/gui/modules') 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"; + }; + }; +} -- cgit v1.2.3