summaryrefslogtreecommitdiffstats
path: root/docs/content/configuration/config-file
AgeCommit message (Collapse)Author
2023-05-09docs: update process config docs (#1142)Clement Tsang
2023-05-09bug: fix certain custom column combinations causing issues (#1140)Clement Tsang
* docs: update some docs related to processes * bug: temp bandaid on column feature to avoid dupes issue
2023-05-07docs: update docs with processes column (#1138)Clement Tsang
2023-04-12feature: add buffer and cache memory (#1063)Twan Stok
* First implementation of cache memory data collection, mostly copied from RAM and swap implementations * First implementation of cache memory display, copied from RAM and swap implementations. placed cache as second in the list as it is more similar to the RAM than any other item in the list * expanded comment to explain method. * rustfmt * all cache-related code excluded on windows, in the process refactored src/data_conversion.rs convert_mem_label() to convert a single label instead of all at once * better factoring-out of cache memory logic to allow individual disabling * added --enable_cache_memory flag, disabled cache memory collection by default * renamed CCH to CHE not sure how i messed that up * changelog updated * Added command line flag documentation * updated config file documentation * specified that buffer and cache memory display does not work on windows * resolved merge conflicts * added documentation to cache memory data collection * capitalized Windows * implemented missing canvas styling logic * fixed misplaced no-windows flag * reduced colour collisions, as cache colour was the same as the first GPU colour * made FIFTH_COLOUR constant windows-only * Revert "made FIFTH_COLOUR constant windows-only" This reverts commit 72698f1dd7e2de7dbda843708ece6a3dba66f94f. * made FIFTH_COLOUR constant non-windows-only * minor fix for basic mode row count * Update src/app/data_harvester/memory/sysinfo.rs Co-authored-by: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> * Update src/canvas/widgets/mem_basic.rs Co-authored-by: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> * updated default_config.toml * formatting --------- Co-authored-by: ClementTsang <34804052+ClementTsang@users.noreply.github.com>
2022-12-07docs: update changelog + docs for default expansion feature (#928)Clement Tsang
2022-11-21other: non-normalized process CPU% cleanup and docs (#910)Clement Tsang
* refactor: simplify non-normalized code * update docs * appease clippy * add comment * unnormalized * fix issues on non-Linux regarding typos/imports
2022-11-13feature: add custom retention periods for data (#892)Clement Tsang
* feature: add custom retention periods for data * docs: update changelog * docs: update docs
2022-10-16enable gpu mem cli and update docs for arc/gpu mem (#836)Justin Martin
2021-09-25docs: break broken image link for sample layoutClementTsang
2021-07-19docs: fix broken image link in data filtering (#553)Clement Tsang
Fixes broken links in the documentation site.
2021-07-14bug: scaling -> scale in some docs, help, and config (#543)Clement Tsang
Just fixing a few typos.
2021-07-14bug: Fix missing config options in docs and default config (#542)Clement Tsang
Adds the missing hide_time and battery config option to the default config and corresponding documentation. Should probably automate the generation of this somehow tbh, though this might change when I add in-app config (soon™)
2021-06-21docs: Switch to webp, fix some sections (#514)Clement Tsang
Switches to webp and fixes some typos/poor wording.
2021-06-21docs: migrate documentation over to mkdocs (#506)Clement Tsang
A large migration of documentation over to mkdocs, and some rewrites. Some stuff (install information, basic supported systems, contributors, thanks) are still staying in README.md, and CONTRIBUTING.md is essentially duplicated right now. However, stuff like configuration and key/mouse bindings are now moved to mkdocs. Some parts are still a bit WIP - it is definitely not done (documentation never seems to be...). However, it should be "good enough" for now, and I'm much happier working with the documentation in this form than trying to scroll through a giant endless README.md file. It also works much better for adding new documentation.