nix-config/applications/feh/default.nix
2023-05-18 15:54:15 -04:00

76 lines
1.9 KiB
Nix

{
home-manager.sharedModules = [{
programs.feh = {
enable = true;
keybindings = {
toggle_actions = null;
toggle_aliasing = null;
toggle_caption = null;
toggle_filenames = "d";
toggle_exif = null;
save_filelist = null;
toggle_fixed_geometry = "g";
toggle_pause = "h";
toggle_info = null;
toggle_keep_vp = null;
toggle_menu = null;
next_img = [ "k" "Right" ];
toggle_pointer = "a";
prev_img = [ "j" "Left" ];
quit = "q";
reload_image = null;
save_image = null;
toggle_fullscreen = "f";
size_to_image = "w";
close = null;
jump_random = "z";
prev_dir = null;
next_dir = null;
orient_3 = null;
orient_1 = null;
flip = null;
mirror = null;
action_0 = null;
action_1 = null;
action_2 = null;
action_3 = null;
action_4 = null;
action_5 = null;
action_6 = null;
action_7 = null;
action_8 = null;
action_9 = null;
jump_first = "J";
jump_last = "K";
jump_fwd = "H";
jump_back = "L";
reload_plus = null;
reload_minus = null;
remove = null;
delete = null;
scroll_left = "b";
scroll_right = "n";
scroll_up = [ "u" "Up" ];
scroll_down = [ "d" "Down" ];
scroll_left_page = null;
scroll_right_page = null;
scroll_up_page = null;
scroll_down_page = null;
render = null;
zoom_in = "h";
zoom_out = "l";
zoom_default = "o";
zoom_fit = null;
zoom_fill = "p";
menu_close = null;
menu_up = null;
menu_down = null;
menu_parent = null;
menu_child = null;
menu_select = null;
toggle_auto_zoom = "m";
};
};
}];
}