https://github.com/ho-cooh/aida64-cli
Command line monitoring tool, using AIDA64 data
https://github.com/ho-cooh/aida64-cli
Last synced: about 1 year ago
JSON representation
Command line monitoring tool, using AIDA64 data
- Host: GitHub
- URL: https://github.com/ho-cooh/aida64-cli
- Owner: HO-COOH
- Created: 2020-01-03T03:18:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-04T08:59:36.000Z (over 6 years ago)
- Last Synced: 2025-02-10T02:45:37.654Z (over 1 year ago)
- Language: C++
- Size: 44.7 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AIDA64-CLI
Command line monitoring tool, using AIDA64 data
# Changelog
- Version 0:
Pure text, using C-string functions, showing infomation line by line. The AIDA64 memory mapped file data is a long '\0' ended string. I **did not** implement parser.

- Version 1:
Using a terminal-based progress bar library here:
[https://github.com/p-ranav/indicators](https://github.com/p-ranav/indicators) And I implemented a parser to store ``label`` and ``value`` into a ``struct``.
The problem being that in order to achieve thread safety, the library seems to use template to draw multiple progress bar. Therefore, the number of progress bars to draw have to be determined at **compile time** instead of **run time**.
