summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-19 00:15:55 +0000
committergithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-19 00:15:55 +0000
commitde2d81a5a7aa86a9b1644c9f0e62aebcbbbada17 (patch)
tree8824ccf1c82d7030f44ba36998b88a5d004986b7
parent17e2afc616cb3b303c7c6e36414a3208f6b57245 (diff)
Deployed 7c14aa26 to nightly with MkDocs 1.5.3 and mike 2.0.0
-rw-r--r--nightly/configuration/config-file/data-filtering/index.html6
-rw-r--r--nightly/configuration/config-file/layout/index.html8
-rw-r--r--nightly/configuration/config-file/processes/index.html2
-rw-r--r--nightly/sitemap.xml56
-rw-r--r--nightly/sitemap.xml.gzbin485 -> 484 bytes
-rw-r--r--nightly/troubleshooting/index.html4
6 files changed, 38 insertions, 38 deletions
diff --git a/nightly/configuration/config-file/data-filtering/index.html b/nightly/configuration/config-file/data-filtering/index.html
index 1a34d985..67d7a8f7 100644
--- a/nightly/configuration/config-file/data-filtering/index.html
+++ b/nightly/configuration/config-file/data-filtering/index.html
@@ -1313,7 +1313,7 @@
<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>
@@ -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>
<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>
diff --git a/nightly/configuration/config-file/layout/index.html b/nightly/configuration/config-file/layout/index.html
index d3e41b8d..c230d2d6 100644
--- a/nightly/configuration/config-file/layout/index.html
+++ b/nightly/configuration/config-file/layout/index.html
@@ -1311,18 +1311,18 @@
<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.
diff --git a/nightly/configuration/config-file/processes/index.html b/nightly/configuration/config-file/processes/index.html
index be118023..9ecfd5e5 100644
--- a/nightly/configuration/config-file/processes/index.html
+++ b/nightly/configuration/config-file/processes/index.html
@@ -1344,7 +1344,7 @@
<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>
diff --git a/nightly/sitemap.xml b/nightly/sitemap.xml
index 77eb4fd6..08981d7b 100644
--- a/nightly/sitemap.xml
+++ b/nightly/sitemap.xml
@@ -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> \ No newline at end of file
diff --git a/nightly/sitemap.xml.gz b/nightly/sitemap.xml.gz
index b8f3c0ec..3af3917f 100644
--- a/nightly/sitemap.xml.gz
+++ b/nightly/sitemap.xml.gz
Binary files differ
diff --git a/nightly/troubleshooting/index.html b/nightly/troubleshooting/index.html
index 4c6a4206..244d6a2d 100644
--- a/nightly/troubleshooting/index.html
+++ b/nightly/troubleshooting/index.html
@@ -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>
<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>