1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-29 05:31:03 +01:00
home-manager/tests/modules/programs/feh/feh-themes.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

46 lines
705 B
Nix

{
programs.feh.enable = true;
programs.feh.themes = {
feh = [
"--image-bg"
"black"
];
webcam = [
"--multiwindow"
"--reload"
"20"
];
present = [
"--full-screen"
"--sort"
"name"
"--hide-pointer"
];
booth = [
"--full-screen"
"--hide-pointer"
"--slideshow-delay"
"20"
];
imagemap = [
"-rVq"
"--thumb-width"
"40"
"--thumb-height"
"30"
"--index-info"
"%n\\n%wx%h"
];
example = [
"--info"
"foo bar"
];
};
nmt.script = ''
assertFileContent \
home-files/.config/feh/themes \
${./feh-themes-expected}
'';
}