summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-12-10 15:21:35 -0500
committerGitHub <noreply@github.com>2023-12-10 15:21:35 -0500
commitb6f92c2f3d4773870a6cde224fb2844d291989d2 (patch)
tree048c5dfd759ca3fa0ff8ea46ec49fe2c130addef /docs
parent300f66700e41d9ff5adb5f100c4455683ebaa6d5 (diff)
feature: support default selection of average CPU graph (#1353)
* feature: support default selection of average CPU graph * test
Diffstat (limited to 'docs')
-rw-r--r--docs/content/configuration/config-file/cpu.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/content/configuration/config-file/cpu.md b/docs/content/configuration/config-file/cpu.md
new file mode 100644
index 00000000..77d8fe30
--- /dev/null
+++ b/docs/content/configuration/config-file/cpu.md
@@ -0,0 +1,11 @@
+# CPU
+
+## Default CPU Graph Selection
+
+You can configure which CPU graph is shown by default when starting up bottom by setting `cpu.default`.
+
+```toml
+[cpu]
+# One of "all" (default), "average"/"avg"
+default = "average"
+```