Skip to content

Commit

Permalink
Deployed 7c14aa2 to nightly with MkDocs 1.5.3 and mike 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 19, 2023
1 parent 17e2afc commit de2d81a
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 38 deletions.
6 changes: 3 additions & 3 deletions nightly/configuration/config-file/data-filtering/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@ <h1 id="data-filtering"><a class="toclink" href="#data-filtering">Data Filtering
<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>
<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">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>
Expand All @@ -1322,14 +1322,14 @@ <h1 id="data-filtering"><a class="toclink" href="#data-filtering">Data Filtering
<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>
<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">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="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">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">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>
Expand Down
8 changes: 4 additions & 4 deletions nightly/configuration/config-file/layout/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1311,18 +1311,18 @@ <h1 id="layout"><a class="toclink" href="#layout">Layout</a></h1>
<p>For example, given the sample layout:</p>
<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="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="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="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="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="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="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>
<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.
Expand Down
2 changes: 1 addition & 1 deletion nightly/configuration/config-file/processes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ <h2 id="columns"><a class="toclink" href="#columns">Columns</a></h2>
<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>
<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>


Expand Down
56 changes: 28 additions & 28 deletions nightly/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,142 +2,142 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://clementtsang.github.io/bottom/stable/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/troubleshooting/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/documentation/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<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>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/logging/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/contribution/development/testing/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/support/official/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/support/unofficial/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/basic-mode/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/general-usage/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/battery/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/cpu/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/disk/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/memory/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/network/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/process/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>https://clementtsang.github.io/bottom/stable/usage/widgets/temperature/</loc>
<lastmod>2023-11-16</lastmod>
<lastmod>2023-11-19</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>
Binary file modified nightly/sitemap.xml.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions nightly/troubleshooting/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1513,11 +1513,11 @@ <h3 id="check-the-formatting"><a class="toclink" href="#check-the-formatting">Ch
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>
<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>
<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>
<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>
<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>
Expand Down

0 comments on commit de2d81a

Please sign in to comment.