mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
deploy: df556f2a17
This commit is contained in:
parent
c5e72d88c3
commit
64265c1195
1 changed files with 18 additions and 50 deletions
|
|
@ -80811,44 +80811,6 @@ package</p>
|
||||||
<p><span class="emphasis"><em>Default:</em></span>
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
<code class="literal">pkgs.mako</code></p>
|
<code class="literal">pkgs.mako</code></p>
|
||||||
|
|
||||||
<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/services/mako.nix" target="_top">
|
|
||||||
<home-manager/modules/services/mako.nix>
|
|
||||||
</a></code>
|
|
||||||
</td></tr>
|
|
||||||
</table>
|
|
||||||
</dd>
|
|
||||||
<dt>
|
|
||||||
<span class="term">
|
|
||||||
<a id="opt-services.mako.criteria"></a><a class="term" href="options.xhtml#opt-services.mako.criteria"><code class="option">services.mako.criteria</code>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
<p>Criterias for mako’s config. All the details can be found in the
|
|
||||||
CRITERIA section in the official documentation.</p>
|
|
||||||
|
|
||||||
<p><span class="emphasis"><em>Type:</em></span>
|
|
||||||
attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or 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">{
|
|
||||||
"actionable=true" = {
|
|
||||||
anchor = "top-left";
|
|
||||||
};
|
|
||||||
"app-name=Google\\ Chrome" = {
|
|
||||||
max-visible = "5";
|
|
||||||
};
|
|
||||||
"field1=value field2=value" = {
|
|
||||||
text-alignment = "left";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
<p><span class="emphasis"><em>Declared by:</em></span></p>
|
||||||
<table border="0" summary="Simple list" class="simplelist">
|
<table border="0" summary="Simple list" class="simplelist">
|
||||||
<tr><td>
|
<tr><td>
|
||||||
|
|
@ -80865,31 +80827,37 @@ attribute set of section of an INI file (attrs of INI atom (null, bool, int, flo
|
||||||
</span>
|
</span>
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<p>Configuration settings for mako. All available options can be found
|
<p>Configuration settings for mako. Can include both global settings and sections.
|
||||||
here: <a class="link" href="https://github.com/emersion/mako/blob/master/doc/mako.5.scd" target="_top">https://github.com/emersion/mako/blob/master/doc/mako.5.scd</a>.</p>
|
All available options can be found here:
|
||||||
|
<a class="link" href="https://github.com/emersion/mako/blob/master/doc/mako.5.scd" target="_top">https://github.com/emersion/mako/blob/master/doc/mako.5.scd</a>.</p>
|
||||||
|
|
||||||
<p><span class="emphasis"><em>Type:</em></span>
|
<p><span class="emphasis"><em>Type:</em></span>
|
||||||
attribute set of (INI atom (null, bool, int, float or string))</p>
|
attribute set of (INI atom (null, bool, int, float or string) or attribute set of (INI atom (null, bool, int, float or string)))</p>
|
||||||
|
|
||||||
<p><span class="emphasis"><em>Default:</em></span>
|
<p><span class="emphasis"><em>Default:</em></span>
|
||||||
<code class="literal">{ }</code></p>
|
<code class="literal">{ }</code></p>
|
||||||
|
|
||||||
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">''
|
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">''
|
||||||
{
|
{
|
||||||
actions = "true";
|
actions = true;
|
||||||
anchor = "top-right";
|
anchor = "top-right";
|
||||||
background-color = "#000000";
|
background-color = "#000000";
|
||||||
border-color = "#FFFFFF";
|
border-color = "#FFFFFF";
|
||||||
border-radius = "0";
|
border-radius = 0;
|
||||||
default-timeout = "0";
|
default-timeout = 0;
|
||||||
font = "monospace 10";
|
font = "monospace 10";
|
||||||
height = "100";
|
height = 100;
|
||||||
width = "300";
|
width = 300;
|
||||||
icons = "true";
|
icons = true;
|
||||||
ignore-timeout = "false";
|
ignore-timeout = false;
|
||||||
layer = "top";
|
layer = "top";
|
||||||
margin = "10";
|
margin = 10;
|
||||||
markup = "true";
|
markup = true;
|
||||||
|
|
||||||
|
# Section example
|
||||||
|
"actionable=true" = {
|
||||||
|
anchor = "top-left";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
''
|
''
|
||||||
</code></pre>
|
</code></pre>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue