mirror of
https://github.com/nix-community/home-manager
synced 2025-02-17 05:35:06 +01:00
deploy: 1d0862ee2d
This commit is contained in:
parent
fef61aa4bc
commit
3fdaf0fa36
1 changed files with 66 additions and 2 deletions
|
@ -19361,7 +19361,7 @@ package</p>
|
|||
<p>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 <a class="link" href="https://man.finalrewind.org/1/feh/#x425554544f4e53" target="_top">https://man.finalrewind.org/1/feh/#x425554544f4e53</a> for
|
||||
See <a class="link" href="https://man.finalrewind.org/1/feh/#BUTTONS_CONFIG_SYNTAX" target="_top">https://man.finalrewind.org/1/feh/#BUTTONS_CONFIG_SYNTAX</a> for
|
||||
default bindings and available commands.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
|
@ -19399,7 +19399,7 @@ attribute set of (null or string or signed integer or list of (string or signed
|
|||
<p>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 <a class="link" href="https://man.finalrewind.org/1/feh/#x4b455953" target="_top">https://man.finalrewind.org/1/feh/#x4b455953</a> for
|
||||
See <a class="link" href="https://man.finalrewind.org/1/feh/#KEYS_CONFIG_SYNTAX" target="_top">https://man.finalrewind.org/1/feh/#KEYS_CONFIG_SYNTAX</a> for
|
||||
default bindings and available commands.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
|
@ -19418,6 +19418,70 @@ attribute set of (null or string or list of string)</p>
|
|||
}
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/feh.nix" target="_top">
|
||||
<home-manager/modules/programs/feh.nix>
|
||||
</a></code>
|
||||
</td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
<dt>
|
||||
<span class="term">
|
||||
<a id="opt-programs.feh.themes"></a><a class="term" href="options.xhtml#opt-programs.feh.themes"><code class="option">programs.feh.themes</code>
|
||||
</a>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<p>Define themes for feh.
|
||||
See <a class="link" href="https://man.finalrewind.org/1/feh/#THEMES_CONFIG_SYNTAX" target="_top">https://man.finalrewind.org/1/feh/#THEMES_CONFIG_SYNTAX</a> for
|
||||
important guidelines and limitations related to theme configuration.</p>
|
||||
|
||||
<p><span class="emphasis"><em>Type:</em></span>
|
||||
attribute set of list of string</p>
|
||||
|
||||
<p><span class="emphasis"><em>Default:</em></span>
|
||||
<code class="literal">{ }</code></p>
|
||||
|
||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{
|
||||
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"
|
||||
];
|
||||
}
|
||||
</code></pre>
|
||||
|
||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||
<table border="0" summary="Simple list" class="simplelist">
|
||||
<tr><td>
|
||||
|
|
Loading…
Add table
Reference in a new issue