├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Readme.md ├── Release.md ├── assets └── logo.png └── src ├── app.rs ├── board.rs ├── cpu.rs ├── disk.rs ├── engine.rs ├── event.rs ├── fan.rs ├── gpu.rs ├── handler.rs ├── lib.rs ├── main.rs ├── memory.rs ├── network.rs ├── power.rs ├── system.rs ├── thermal.rs ├── tui.rs └── ui.rs /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/Readme.md -------------------------------------------------------------------------------- /Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/Release.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/assets/logo.png -------------------------------------------------------------------------------- /src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/app.rs -------------------------------------------------------------------------------- /src/board.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/board.rs -------------------------------------------------------------------------------- /src/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/cpu.rs -------------------------------------------------------------------------------- /src/disk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/disk.rs -------------------------------------------------------------------------------- /src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/engine.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/fan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/fan.rs -------------------------------------------------------------------------------- /src/gpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/gpu.rs -------------------------------------------------------------------------------- /src/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/handler.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/memory.rs -------------------------------------------------------------------------------- /src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/network.rs -------------------------------------------------------------------------------- /src/power.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/power.rs -------------------------------------------------------------------------------- /src/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/system.rs -------------------------------------------------------------------------------- /src/thermal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/thermal.rs -------------------------------------------------------------------------------- /src/tui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/tui.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythops/tegratop/HEAD/src/ui.rs --------------------------------------------------------------------------------