summaryrefslogtreecommitdiffstats
path: root/src/args.rs
AgeCommit message (Collapse)Author
2023-12-01other: change group -> group_processes for consistency between config and ↵Clement Tsang
command-line args (#1344) * other: change group -> group_processes to match config file name * update docs * update changelog
2023-11-19feature: Add gpu proc info (#1276)Justin Martin
* Add gpu util, power and procs. Consolidated gpu calls into `data_harvester`. Changed config flag from `enable_gpu_memory` to `enable_gpu`. Added GPU utilization to the cpu widget. Added GPU process memory usage and utilization percentage to the proc widget. Added key binds for gpu process toggling. Added GPU power usage to the battery widget. Added bounds check to battery widget header. Show battery widget header when `gpu_enable`. Added feature flag `legacy-functions` to `nvml-wrapper`. updated config file(s). updated help text. updated docs. * Code Review: Remove GPU util from cpu widget Remove GPU power from battery widget Use reference for gpu widgets_to_harvest Extract match arm to function for feature gate * Code Review: add gmem% toggle * Do not poll gpu temp when filtered * Code Review Two Changes: adjust doc wordings remove extra references remove extra widget harvest checks init proc gpu values use convert_temp_unit for gpu temp
2023-10-22chore: Minor cleanup - remove un-needed ident qualifiers (#1307)Yuri Astrakhan
Keep code a bit tidier and consistent (i.e. if an identifier already has a `use` entry above, why in some cases still prove a full path to it?)
2023-06-24docs: update time-related documentation (#1222)Clement Tsang
* docs: update time-related documentation * fix retention too
2023-06-23feature: support human times for rate (#1221)Clement Tsang
2023-06-22other: fix humantime-related documentation, add tests, support numbers + ↵Clement Tsang
strings in toml (#1220) * update documentation and support either numerical times or human times for time_delta and default_time_value * update docs * give more human times on error
2023-06-19other: revert color help text change (#1217)Clement Tsang
Didn't mean to push this, reverting it.
2023-06-19other: take ownership of config and matches when building App (#1215)Clement Tsang
The clap matches/config struct was taken in as a reference when building the App structure. However, we do not need to keep these around after this, so we can instead take ownership of the match/config and drop it after to save a bit of memory.