MyNixOS website logo

Override feh's default keybindings. If you want to disable a keybinding set its value to null. If you want to bind multiple keys to an action, set its value to a list. See https://man.finalrewind.org/1/feh/#x4b455953 for default bindings and available commands.

Declarations
Type
attribute set of (null or string or list of string)
Default
{ }
Example
{
  prev_img = [
    "h"
    "Left"
  ];
  zoom_in = "plus";
  zoom_out = "minus";
}