nix-config/home/pqiv.nix
Donovan Glover 3a46bb767f
pqiv: Set max-depth to 0
Fixes an issue where the latest version of pqiv would become
unresponsive when browsing images in directories with large
subdirectories. Also makes selecting multiple images work again.

See: https://github.com/phillipberndt/pqiv/pull/204
2024-03-08 00:00:56 -05:00

19 lines
389 B
Nix

{
programs.pqiv = {
enable = true;
settings = {
options = {
lazy-load = 1;
hide-info-box = 1;
scale-mode-screen-fraction = 1;
max-depth = 0;
background-pattern = "black";
disable-backends = "archive,archive_cbx,libav,poppler,spectre";
thumbnail-size = "256x256";
command-1 = "thunar";
};
};
};
}