1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00
home-manager/modules/programs/feh.nix

71 lines
2.0 KiB
Nix
Raw Normal View History

2017-09-04 16:35:23 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.feh;
disableBinding = func: key: func;
enableBinding = func: key: "${func} ${toString key}";
2017-09-04 16:35:23 +02:00
2020-02-02 00:39:17 +01:00
in {
2017-09-04 16:35:23 +02:00
options.programs.feh = {
enable = mkEnableOption "feh - a fast and light image viewer";
buttons = mkOption {
2020-02-02 00:39:17 +01:00
default = { };
type = with types; attrsOf (nullOr (either str int));
2020-02-02 00:39:17 +01:00
example = {
zoom_in = 4;
zoom_out = "C-4";
};
description = ''
Override feh's default mouse button mapping. If you want to disable an
2020-02-02 00:39:17 +01:00
action, set its value to null.
See <link xlink:href="https://man.finalrewind.org/1/feh/#x425554544f4e53"/> for
default bindings and available commands.
'';
};
2017-09-04 16:35:23 +02:00
keybindings = mkOption {
2020-02-02 00:39:17 +01:00
default = { };
type = types.attrsOf (types.nullOr types.str);
2020-02-02 00:39:17 +01:00
example = {
zoom_in = "plus";
zoom_out = "minus";
};
2017-09-04 16:35:23 +02:00
description = ''
Override feh's default keybindings. If you want to disable a keybinding
2020-02-02 00:39:17 +01:00
set its value to null.
2017-09-04 16:35:23 +02:00
See <link xlink:href="https://man.finalrewind.org/1/feh/#x4b455953"/> for
default bindings and available commands.
'';
};
};
config = mkIf cfg.enable {
2020-02-02 00:39:17 +01:00
assertions = [{
assertion = ((filterAttrs (n: v: v == "") cfg.keybindings) == { });
message =
"To disable a keybinding, use `null` instead of an empty string.";
}];
2017-09-04 16:35:23 +02:00
home.packages = [ pkgs.feh ];
xdg.configFile."feh/buttons".text = ''
2020-02-02 00:39:17 +01:00
${concatStringsSep "\n" (mapAttrsToList disableBinding
(filterAttrs (n: v: v == null) cfg.buttons))}
${concatStringsSep "\n" (mapAttrsToList enableBinding
(filterAttrs (n: v: v != null) cfg.buttons))}
'';
2017-09-04 16:35:23 +02:00
xdg.configFile."feh/keys".text = ''
2020-02-02 00:39:17 +01:00
${concatStringsSep "\n" (mapAttrsToList disableBinding
(filterAttrs (n: v: v == null) cfg.keybindings))}
${concatStringsSep "\n" (mapAttrsToList enableBinding
(filterAttrs (n: v: v != null) cfg.keybindings))}
2017-09-04 16:35:23 +02:00
'';
};
}