From 047c64bc93fa90b9ee5cb8d44809f5a6c2ce963c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 01:44:36 +0000 Subject: [PATCH] Deployed 0b22ee4c to nightly with MkDocs 1.6.1 and mike 2.1.4 --- .../config-file/cpu-graph/index.html | 4 +- .../config-file/disk-io-graph/index.html | 6 +- .../config-file/disk-table/index.html | 12 +-- .../config-file/layout/index.html | 8 +- .../config-file/memory-graph/index.html | 4 +- .../config-file/network-graph/index.html | 2 +- .../config-file/processes/index.html | 6 +- .../config-file/styling/index.html | 22 +++--- .../config-file/temperature-graph/index.html | 4 +- .../config-file/temperature-table/index.html | 6 +- nightly/nightly-release/index.html | 8 +- nightly/sitemap.xml | 74 +++++++++--------- nightly/sitemap.xml.gz | Bin 508 -> 508 bytes nightly/troubleshooting/index.html | 4 +- 14 files changed, 80 insertions(+), 80 deletions(-) diff --git a/nightly/configuration/config-file/cpu-graph/index.html b/nightly/configuration/config-file/cpu-graph/index.html index 25bd322d..3f2178fe 100644 --- a/nightly/configuration/config-file/cpu-graph/index.html +++ b/nightly/configuration/config-file/cpu-graph/index.html @@ -2098,8 +2098,8 @@

You can configure which CPU graph is shown by default on startup by setting cpu.default. Defaults to "all", which shows all entries.

[cpu]
-# One of "all" (default), "average"/"avg"
-default = "average"
+# One of "all" (default), "average"/"avg"
+default = "average"
 

Show decimal

You can configure whether CPU usage values are shown with a decimal place by setting cpu.show_decimal. Defaults diff --git a/nightly/configuration/config-file/disk-io-graph/index.html b/nightly/configuration/config-file/disk-io-graph/index.html index 743d4720..5d908df1 100644 --- a/nightly/configuration/config-file/disk-io-graph/index.html +++ b/nightly/configuration/config-file/disk-io-graph/index.html @@ -2118,7 +2118,7 @@

By default, legend entries are labelled by disk name (e.g. sda, nvme0n1). To use mount points instead (e.g. /, /home):

[disk_io_graph]
-legend = "mount"
+legend = "mount"
 

Valid values are "disk" (default) and "mount".

Logarithmic Scale

@@ -2130,7 +2130,7 @@ instead (e.g. /, /home):

The location of the legend can be set with legend_position. Valid values are none, top-left, top, top-right, left, right, bottom-left, bottom, and bottom-right. Defaults to top-right.

[disk_io_graph]
-legend_position = "top-right"
+legend_position = "top-right"
 

Show Unmounted Devices (Linux only)

By default, only mounted devices are shown. To also show unmounted devices on Linux, enable include_unmounted:

@@ -2147,7 +2147,7 @@ and configure how that list is processed with the other options.

is_list_ignored = true # A list of filters to try and match. -list = ["/dev/sda"] +list = ["/dev/sda"] # Whether to use regex. Defaults to false. regex = true diff --git a/nightly/configuration/config-file/disk-table/index.html b/nightly/configuration/config-file/disk-table/index.html index 6dd73aa6..4e20a0a1 100644 --- a/nightly/configuration/config-file/disk-table/index.html +++ b/nightly/configuration/config-file/disk-table/index.html @@ -2086,19 +2086,19 @@

You can configure which columns are shown by the disk table widget by setting the columns setting:

[disk]
 # Pick which columns you want to use in any order.
-columns = ["Disk", "Mount", "Used", "Free", "Total", "Used%", "R/s", "W/s"]
+columns = ["Disk", "Mount", "Used", "Free", "Total", "Used%", "R/s", "W/s"]
 

Default Sort Column

You can customize the default sort column (by default, it sorts by disk name in ascending order). For example, to sort by the read rate:

[disk]
-default_sort = "R/s"
+default_sort = "R/s"
 

You can use any valid column name here (e.g. "Disk", "Mount", etc.). Note that if you put a column name that is not actually used, the default sort will just be the first column shown.

You can also set the sort order by changing disk.sort_order with "Ascending" or "Descending". Defaults to "Ascending":

[disk]
-sort_order = "Ascending"
+sort_order = "Ascending"
 

Show Unmounted Devices (Linux only)

By default, only mounted devices are shown. To also show unmounted devices on Linux, enable include_unmounted:

@@ -2120,7 +2120,7 @@ is processed with the other options.

is_list_ignored = true # A list of filters to try and match. -list = ["/dev/sda"] +list = ["/dev/sda"] # Whether to use regex. Defaults to false. regex = true @@ -2136,14 +2136,14 @@ is processed with the other options.

We can also combine both the name filter and mount filter. For example:

[disk.name_filter]
 is_list_ignored = false
-list = ["/dev/sda"]
+list = ["/dev/sda"]
 regex = true
 case_sensitive = false
 whole_word = false
 
 [disk.mount_filter]
 is_list_ignored = true
-list = ["/mnt/.*", "/"]
+list = ["/mnt/.*", "/"]
 regex = true
 case_sensitive = false
 whole_word = true
diff --git a/nightly/configuration/config-file/layout/index.html b/nightly/configuration/config-file/layout/index.html
index e5e7e01b..78c3e6f7 100644
--- a/nightly/configuration/config-file/layout/index.html
+++ b/nightly/configuration/config-file/layout/index.html
@@ -2009,18 +2009,18 @@
 

For example, given the sample layout:

[[row]]
   [[row.child]]
-  type="cpu"
+  type="cpu"
 [[row]]
     ratio=2
     [[row.child]]
       ratio=4
-      type="mem"
+      type="mem"
     [[row.child]]
       ratio=3
       [[row.child.child]]
-        type="temp"
+        type="temp"
       [[row.child.child]]
-        type="disk"
+        type="disk"
 

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/memory-graph/index.html b/nightly/configuration/config-file/memory-graph/index.html index f25e34a1..48a8351e 100644 --- a/nightly/configuration/config-file/memory-graph/index.html +++ b/nightly/configuration/config-file/memory-graph/index.html @@ -2086,8 +2086,8 @@

Graph legend position

You can change where the legend for the graph is placed within the widget itself (or hidden with "none"). The default is "top-right".

[memory_graph]
-# One of ["none", "top-left", "top", "top-right", "left", "right", "bottom-left", "bottom", "bottom-right"]
-legend_position = "top-left"
+# One of ["none", "top-left", "top", "top-right", "left", "right", "bottom-left", "bottom", "bottom-right"]
+legend_position = "top-left"
 

Collect/show cache memory

On Linux, you can change whether the memory used by cache/slabs is collected and diff --git a/nightly/configuration/config-file/network-graph/index.html b/nightly/configuration/config-file/network-graph/index.html index 2d0e1c40..0620c57b 100644 --- a/nightly/configuration/config-file/network-graph/index.html +++ b/nightly/configuration/config-file/network-graph/index.html @@ -2112,7 +2112,7 @@ In particular, you can set a list of things to filter with by setting list is_list_ignored = true # A list of filters to try and match. -list = ["virbr0", "eth0slab"] +list = ["virbr0", "eth0slab"] # Whether to use regex. Defaults to false. regex = true diff --git a/nightly/configuration/config-file/processes/index.html b/nightly/configuration/config-file/processes/index.html index 589ba704..0b6fa32c 100644 --- a/nightly/configuration/config-file/processes/index.html +++ b/nightly/configuration/config-file/processes/index.html @@ -2153,12 +2153,12 @@

You can configure which columns are shown by the process widget by setting the columns setting:

[processes]
 # Pick which columns you want to use in any order.
-columns = ["cpu%", "mem%", "pid", "name", "read", "write", "tread", "twrite", "state", "user", "time", "gmem%", "gpu%"]
+columns = ["cpu%", "mem%", "pid", "name", "read", "write", "tread", "twrite", "state", "user", "time", "gmem%", "gpu%"]
 

Default Sort Column

By default, the process widget starts sorted by CPU usage in descending order. You can change the column it sorts by at startup:

[processes]
-default_sort = "mem"
+default_sort = "mem"
 

Any of the column names accepted by columns work here (e.g. "cpu%", "mem", "pid", "name", "read"). If the column you pick is not actually shown by the widget, the built-in default is used instead.

@@ -2167,7 +2167,7 @@ column you pick is not actually shown by the widget, the built-in default is use

You can also set the default order by changing processes.sort_order with "Ascending" or "Descending". If not set, then by default, it will use a sort order that is reasonable (e.g. descending for CPU/memory usage, ascending for process names).

[processes]
-sort_order = "Ascending"
+sort_order = "Ascending"
 
diff --git a/nightly/configuration/config-file/styling/index.html b/nightly/configuration/config-file/styling/index.html index e5d8ac7c..48d6365e 100644 --- a/nightly/configuration/config-file/styling/index.html +++ b/nightly/configuration/config-file/styling/index.html @@ -2227,7 +2227,7 @@ highest precedence to lowest precedence:

To set the theme using the config file:

[styles]
-theme = "gruvbox"
+theme = "gruvbox"
 

Custom styling

bottom's components can also be individually styled by the user to control the colour of the text style.

@@ -2237,19 +2237,19 @@ highest precedence to lowest precedence:

Note that anywhere "colour" is used, it can be substituted for "color":

# This is okay
 [styles.widgets.widget_title]
-colour = "black"
-bg_colour = "white"
+colour = "black"
+bg_colour = "white"
 
 [styles.cpu]
-all_entry_colour = "green"
+all_entry_colour = "green"
 
 # This is also okay
 [styles.widgets.widget_title]
-color = "black"
-bg_color = "white"
+color = "black"
+bg_color = "white"
 
 [styles.cpu]
-all_entry_color = "green"
+all_entry_color = "green"
 

You can configure the colours for components with strings that are either hex colours (e.g. "#ffffff"), RGB colours @@ -2276,22 +2276,22 @@ highest precedence to lowest precedence:

Text can generally be styled using the following TOML table:

[field]
 # The foreground colour of text.
-colour = "black"
+colour = "black"
 
 # The background colour of text.
-bg_colour = "blue"
+bg_colour = "blue"
 
 # Whether to make the text bold.
 bold = false
 
 # Inline table version
-field = { colour = "black", bg_colour = "blue", bold = false }
+field = { colour = "black", bg_colour = "blue", bold = false }
 

All fields are optional; by default if bg_colour is not set then there will be no background colour.

If you just want to style text by setting the foreground colour, for brevity, then you can also just set the field to be the colour itself. For example:

[styles.widgets]
-selected_text = "#fff"
+selected_text = "#fff"
 

Configuration

CPU

diff --git a/nightly/configuration/config-file/temperature-graph/index.html b/nightly/configuration/config-file/temperature-graph/index.html index c8547fe7..eee983ff 100644 --- a/nightly/configuration/config-file/temperature-graph/index.html +++ b/nightly/configuration/config-file/temperature-graph/index.html @@ -2076,7 +2076,7 @@

The location of the legend can be set with legend_position. Valid values are none, top-left, top, top-right, left, right, bottom-left, bottom, and bottom-right. Defaults to top-right.

[temperature_graph]
-legend_position = "top-right"
+legend_position = "top-right"
 

Upper Limit

By default, the y-axis is bounded at 100°C (or the equivalent in the configured temperature unit) and grows @@ -2094,7 +2094,7 @@ the temperature table's filter.

is_list_ignored = true # A list of filters to try and match. -list = ["cpu", "wifi"] +list = ["cpu", "wifi"] # Whether to use regex. Defaults to false. regex = false diff --git a/nightly/configuration/config-file/temperature-table/index.html b/nightly/configuration/config-file/temperature-table/index.html index a8c406b7..6ef058d3 100644 --- a/nightly/configuration/config-file/temperature-table/index.html +++ b/nightly/configuration/config-file/temperature-table/index.html @@ -2064,12 +2064,12 @@

Default Sort Column

You can customize the default sort column (by default, it sorts by temperature sensor name in ascending order). For example, to sort by temperature:

[temperature]
-default_sort = "Temp"
+default_sort = "Temp"
 

You can also set the sort order by changing temperature.sort_order with "Ascending" or "Descending". Defaults to "Ascending":

[temperature]
-sort_order = "Ascending"
+sort_order = "Ascending"
 

Filtering Entries

You can filter out what entries to show by configuring [temperature.sensor_filter]. In particular you can set a list of things to filter with by setting list, and configure how that list is processed with the other options.

@@ -2079,7 +2079,7 @@ is_list_ignored = true # A list of filters to try and match. -list = ["cpu", "wifi"] +list = ["cpu", "wifi"] # Whether to use regex. Defaults to false. regex = false diff --git a/nightly/nightly-release/index.html b/nightly/nightly-release/index.html index cc769952..2f5df7d3 100644 --- a/nightly/nightly-release/index.html +++ b/nightly/nightly-release/index.html @@ -4,11 +4,11 @@ Redirecting... - - - + + + -You're being redirected to a new destination. +You're being redirected to a new destination. diff --git a/nightly/sitemap.xml b/nightly/sitemap.xml index f84ed837..b253bd49 100644 --- a/nightly/sitemap.xml +++ b/nightly/sitemap.xml @@ -2,150 +2,150 @@ https://bottom.pages.dev/stable/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/troubleshooting/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/command-line-options/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/cpu-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/disk-io-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/disk-table/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/flags/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/layout/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/memory-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/network-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/processes/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/styling/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/temperature-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/configuration/config-file/temperature-table/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/documentation/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/issues-and-pull-requests/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/packaging-and-distribution/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/development/build_process/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/development/deploy_process/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/development/dev_env/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/development/logging/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/contribution/development/testing/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/support/official/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/support/unofficial/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/autocomplete/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/basic-mode/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/general-usage/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/battery/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/cpu-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/disk-io-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/disk/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/memory-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/network-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/process/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/temperature-graph/ - 2026-08-17 + 2026-08-18 https://bottom.pages.dev/stable/usage/widgets/temperature-table/ - 2026-08-17 + 2026-08-18 \ No newline at end of file diff --git a/nightly/sitemap.xml.gz b/nightly/sitemap.xml.gz index 2030eba18b7fd2542f6cbc178a4b93c685846869..629582efb840dd06e58359af7cecb2c28bda5f86 100644 GIT binary patch delta 479 zcmV<50U-YT1N;MjABzYGfS`kF0{?SqbY*Q}a4vXlYyi!d!EW0y3_$PwiokbSX%9s< zB<^iru$~LqW)vZ^sESmw{Qcx4SQ~7)Y``d8WYRMA3{s@He)%!^#Q_pI44dY$T{a5{ z1CB1(P4oKwn_4w5-NQO3Pr!?^IMAlqF~_f3ACJeD9K&RPBDI*TreRkE(pRNkwqKg= zVNu3x;PP}HYmY-WTcKj6M`oPbXe>}W!a)<8-h*E2dDZ8S4Dp0x_q2R^R?C%oT$LqP z-DMa3Yn#8>kQ3%I(+-i#|Nno00mIhWoD3Il6lt1F7?pPc6vkOc@=UX&wobx7_fdwJ zl}#q@YJwVn9qpCFO2LHA*nO(4H@2$y_U43{Ya*Ip!gQ)HpaSp_)4o2im~a3hs4A|A zPri!s@_|&!b%dhN3F>p=XE?d6#mV*g%r@eXCkT8Ym1S{68A#37gqXco3Eqp$B#af! zus5~@`I)TLn~zt*zJmjJjI;Z6pPe7yt|_7-t`VY2$5WMHhc^g^iikW~E0s$BOvL5% zi4aka5ff|NZr$LFmm|nQjv-UgXpJ5{}0V)gbegevEaw!iL00837>Zt$# delta 479 zcmV<50U-YT1N;MjABzYG08fHy0{?SqbY*Q}a4vXlYyi!d!IIk`3_$Pu6&c?#**&z| zPLjR#3)=Gzwq?QuBZ@@a{C#nf>29XYrJbqZf+b_|JQ5Pxy!@E_>IjJ(hHdlMuA3Ev z9tRifw)yt;i+XNeb`P7JJOQuD;y~MG&m2E%J8nz&+fU8z zVO7Rr;PP}H8;|{Nu|ma6hs-#&(O95%fTJchod>jNPXiy|Gorw>KxuTocg*6Q)yr0TqB}Oo#fwV!|GXpsKhc zKKUxj%NtTD*Aa?7C#cVf@8RUK7AM!`GuwcDo*?jrRF=gNWgxX&6JqvWCHP)sCSj~- z`h&40$j@Y@-n_jM_8lC-V_e*)yX^e%dQA}(aSaekJ)WurJHA3VRz&2{TB%g}XCf}A zPlSkajF?#CIJ({$FGrAr97Cp}(IzvN?kRd;kYeZzxn32UVgwdKDVtthBq4~|4Him0 V>I{>|0V)gL{RAR3E;TOML format.

Also make sure your config option settings are in the right location - for example, to set your temperature type, you must set it under the [flags] table:

[flags]
-temperature_type = "f"
+temperature_type = "f"
 

Meanwhile, if you want to set a custom colour or styling scheme, it would be under the [styles] table - for example:

[styles.tables.headers]
-colour = "LightBlue"
+colour = "LightBlue"
 bold = true
 

To help validate your configuration files, there is JSON Schema support if your IDE/editor