Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bensimmers/diagnostic-tui


https://github.com/bensimmers/diagnostic-tui

Last synced: about 2 months ago
JSON representation

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
```