Deployed 7c14aa26 to nightly with MkDocs 1.5.3 and mike 2.0.0

This commit is contained in:
github-actions[bot] 2023-11-19 00:15:55 +00:00
parent 17e2afc616
commit de2d81a5a7
6 changed files with 38 additions and 38 deletions

View File

@ -1313,7 +1313,7 @@
<p>The following in the config file would filter out some entries by disk name:</p> <p>The following in the config file would filter out some entries by disk name:</p>
<div class="highlight"><pre><span></span><code><span class="k">[disk_filter]</span> <div class="highlight"><pre><span></span><code><span class="k">[disk_filter]</span>
<span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>
<span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s">&quot;/dev/sda&quot;</span><span class="p">]</span> <span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s2">&quot;/dev/sda&quot;</span><span class="p">]</span>
<span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>
<span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
<span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
@ -1322,14 +1322,14 @@
<p>If there are two potentially conflicting filters (i.e. when you are using both a disk and mount filter), the filter that explicitly allows an entry takes precedence over a filter that explicitly denies one. So for example, let's say we set a disk filter accepting anything with <code>/dev/sda</code>, but deny anything with <code>/mnt/.*</code> or <code>/</code>. So to do so, we write in the config file:</p> <p>If there are two potentially conflicting filters (i.e. when you are using both a disk and mount filter), the filter that explicitly allows an entry takes precedence over a filter that explicitly denies one. So for example, let's say we set a disk filter accepting anything with <code>/dev/sda</code>, but deny anything with <code>/mnt/.*</code> or <code>/</code>. So to do so, we write in the config file:</p>
<div class="highlight"><pre><span></span><code><span class="k">[disk_filter]</span> <div class="highlight"><pre><span></span><code><span class="k">[disk_filter]</span>
<span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
<span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s">&quot;/dev/sda&quot;</span><span class="p">]</span> <span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s2">&quot;/dev/sda&quot;</span><span class="p">]</span>
<span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>
<span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
<span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
<span class="k">[mount_filter]</span> <span class="k">[mount_filter]</span>
<span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">is_list_ignored</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>
<span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s">&quot;/mnt/.*&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;/&quot;</span><span class="p">]</span> <span class="n">list</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s2">&quot;/mnt/.*&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;/&quot;</span><span class="p">]</span>
<span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">regex</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>
<span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span> <span class="n">case_sensitive</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">false</span>
<span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span> <span class="n">whole_word</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="kc">true</span>

View File

@ -1311,18 +1311,18 @@
<p>For example, given the sample layout:</p> <p>For example, given the sample layout:</p>
<div class="highlight"><pre><span></span><code><span class="k">[[row]]</span> <div class="highlight"><pre><span></span><code><span class="k">[[row]]</span>
<span class="w"> </span><span class="k">[[row.child]]</span> <span class="w"> </span><span class="k">[[row.child]]</span>
<span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s">&quot;cpu&quot;</span> <span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s2">&quot;cpu&quot;</span>
<span class="k">[[row]]</span> <span class="k">[[row]]</span>
<span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">2</span> <span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">2</span>
<span class="w"> </span><span class="k">[[row.child]]</span> <span class="w"> </span><span class="k">[[row.child]]</span>
<span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">4</span> <span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">4</span>
<span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s">&quot;mem&quot;</span> <span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s2">&quot;mem&quot;</span>
<span class="w"> </span><span class="k">[[row.child]]</span> <span class="w"> </span><span class="k">[[row.child]]</span>
<span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">3</span> <span class="w"> </span><span class="n">ratio</span><span class="o">=</span><span class="mi">3</span>
<span class="w"> </span><span class="k">[[row.child.child]]</span> <span class="w"> </span><span class="k">[[row.child.child]]</span>
<span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s">&quot;temp&quot;</span> <span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s2">&quot;temp&quot;</span>
<span class="w"> </span><span class="k">[[row.child.child]]</span> <span class="w"> </span><span class="k">[[row.child.child]]</span>
<span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s">&quot;disk&quot;</span> <span class="w"> </span><span class="n">type</span><span class="o">=</span><span class="s2">&quot;disk&quot;</span>
</code></pre></div> </code></pre></div>
<p>This would give a layout that has two rows, with a 1:2 ratio. The first row has only the CPU widget. <p>This would give a layout that has two rows, with a 1:2 ratio. The first row has only the CPU widget.
The second row is split into two columns with a 4:3 ratio. The first column contains the memory widget. The second row is split into two columns with a 4:3 ratio. The first column contains the memory widget.

View File

@ -1344,7 +1344,7 @@
<p>You can configure which columns are shown by the process widget by setting the <code>columns</code> setting:</p> <p>You can configure which columns are shown by the process widget by setting the <code>columns</code> setting:</p>
<div class="highlight"><pre><span></span><code><span class="k">[processes]</span> <div class="highlight"><pre><span></span><code><span class="k">[processes]</span>
<span class="c1"># Pick which columns you want to use in any order.</span> <span class="c1"># Pick which columns you want to use in any order.</span>
<span class="n">columns</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s">&quot;cpu%&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;mem%&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;pid&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;name&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;read&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;write&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;Tread&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;twrite&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;state&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;user&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;time&quot;</span><span class="p">]</span> <span class="n">columns</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="p">[</span><span class="s2">&quot;cpu%&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;mem%&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;pid&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;name&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;read&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;write&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;Tread&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;twrite&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;state&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;user&quot;</span><span class="p">,</span><span class="w"> </span><span class="s2">&quot;time&quot;</span><span class="p">]</span>
</code></pre></div> </code></pre></div>

View File

@ -2,142 +2,142 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/</loc> <loc>https://clementtsang.github.io/bottom/stable/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/troubleshooting/</loc> <loc>https://clementtsang.github.io/bottom/stable/troubleshooting/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/command-line-flags/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/command-line-flags/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/data-filtering/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/data-filtering/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/default-config/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/default-config/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/flags/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/flags/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/layout/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/layout/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/processes/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/processes/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/theming/</loc> <loc>https://clementtsang.github.io/bottom/stable/configuration/config-file/theming/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/documentation/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/documentation/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/issues-and-pull-requests/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/issues-and-pull-requests/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/packaging-and-distribution/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/packaging-and-distribution/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/build_process/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/development/build_process/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/deploy_process/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/development/deploy_process/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/dev_env/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/development/dev_env/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/logging/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/development/logging/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/testing/</loc> <loc>https://clementtsang.github.io/bottom/stable/contribution/development/testing/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/support/official/</loc> <loc>https://clementtsang.github.io/bottom/stable/support/official/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/support/unofficial/</loc> <loc>https://clementtsang.github.io/bottom/stable/support/unofficial/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/basic-mode/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/basic-mode/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/general-usage/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/general-usage/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/battery/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/battery/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/cpu/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/cpu/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/disk/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/disk/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/memory/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/memory/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/network/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/network/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/process/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/process/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/temperature/</loc> <loc>https://clementtsang.github.io/bottom/stable/usage/widgets/temperature/</loc>
<lastmod>2023-11-16</lastmod> <lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
</urlset> </urlset>

Binary file not shown.

View File

@ -1513,11 +1513,11 @@ on how to run htop without sudo for bottom. However, <strong>please</strong> und
The config files also follow the <a href="https://toml.io/en/">TOML</a> format.</p> The config files also follow the <a href="https://toml.io/en/">TOML</a> format.</p>
<p>Also make sure your config options are under the right table - for example, to set your temperature type, you must set it under the <code>[flags]</code> table:</p> <p>Also make sure your config options are under the right table - for example, to set your temperature type, you must set it under the <code>[flags]</code> table:</p>
<div class="highlight"><pre><span></span><code><span class="k">[flags]</span> <div class="highlight"><pre><span></span><code><span class="k">[flags]</span>
<span class="n">temperature_type</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s">&quot;f&quot;</span> <span class="n">temperature_type</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="s2">&quot;f&quot;</span>
</code></pre></div> </code></pre></div>
<p>Meanwhile, if you want to set a custom color scheme, it would be under the <code>[colors]</code> table:</p> <p>Meanwhile, if you want to set a custom color scheme, it would be under the <code>[colors]</code> table:</p>
<div class="highlight"><pre><span></span><code><span class="k">[colors]</span> <div class="highlight"><pre><span></span><code><span class="k">[colors]</span>
<span class="n">table_header_color</span><span class="o">=</span><span class="s">&quot;LightBlue&quot;</span> <span class="n">table_header_color</span><span class="o">=</span><span class="s2">&quot;LightBlue&quot;</span>
</code></pre></div> </code></pre></div>
<h3 id="check-the-configuration-file-location"><a class="toclink" href="#check-the-configuration-file-location">Check the configuration file location</a></h3> <h3 id="check-the-configuration-file-location"><a class="toclink" href="#check-the-configuration-file-location">Check the configuration file location</a></h3>
<p>Make sure bottom is reading the right configuration file. By default, bottom looks for config files at these locations:</p> <p>Make sure bottom is reading the right configuration file. By default, bottom looks for config files at these locations:</p>