MyNixOS website logo

Define themes for feh. See https://man.finalrewind.org/1/feh/#THEMES_CONFIG_SYNTAX for important guidelines and limitations related to theme configuration.

Declarations
Type
attribute set of list of string
Default
{ }
Example
{
  booth = [
    "--full-screen"
    "--hide-pointer"
    "--slideshow-delay"
    "20"
  ];
  example = [
    "--info"
    "foo bar"
  ];
  feh = [
    "--image-bg"
    "black"
  ];
  imagemap = [
    "-rVq"
    "--thumb-width"
    "40"
    "--thumb-height"
    "30"
    "--index-info"
    "%n\\n%wx%h"
  ];
  present = [
    "--full-screen"
    "--sort"
    "name"
    "--hide-pointer"
  ];
  webcam = [
    "--multiwindow"
    "--reload"
    "20"
  ];
}