Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bensimmers/diagnostic-tui
https://github.com/bensimmers/diagnostic-tui
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bensimmers/diagnostic-tui
- Owner: BenSimmers
- Created: 2024-08-17T05:22:26.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T02:52:33.000Z (4 months ago)
- Last Synced: 2024-09-14T15:56:05.268Z (4 months ago)
- Language: C
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# diagnostic-tui
simple TUI to see some system diagnostics
## Warning
This program was built for ARM64 based M series Macs, therefore it is using certain libraries which are not available on other systems. (fixes are in progress)## Installation
```bash
git clone https://github.com/BenSimmers/diagnostic-tui.git
```- Use the Makefile to build and run the program
```bash
# build the program
make
``````bash
# run the program
./bin/sys_monitor# or
arch -arm64 ./bin/sys_monitor # Run as ARM64
# or (if rosetta is installed)
arch -x86_64 ./bin/sys_monitor # Run as x86_64 (if you have Rosetta installed)
``````bash
# clean the program
make clean
```