diff --git a/options.xhtml b/options.xhtml index dabf6a294..720e23d2a 100644 --- a/options.xhtml +++ b/options.xhtml @@ -19361,7 +19361,7 @@ package

Override feh’s default mouse button mapping. If you want to disable an action, set its value to null. If you want to bind multiple buttons to an action, set its value to a list. -See https://man.finalrewind.org/1/feh/#x425554544f4e53 for +See https://man.finalrewind.org/1/feh/#BUTTONS_CONFIG_SYNTAX for default bindings and available commands.

Type: @@ -19399,7 +19399,7 @@ attribute set of (null or string or signed integer or list of (string or signed

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 +See https://man.finalrewind.org/1/feh/#KEYS_CONFIG_SYNTAX for default bindings and available commands.

Type: @@ -19418,6 +19418,70 @@ attribute set of (null or string or list of string)

} +

Declared by:

+ + +
+ +<home-manager/modules/programs/feh.nix> + +
+ +
+ + programs.feh.themes + + +
+
+

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

+ +

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"
+  ];
+}
+
+

Declared by: