Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladkens committed Jun 25, 2024
1 parent 18d1ad8 commit 44ad6c0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
Binary file modified .github/macmon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
- name: archiving
id: archive
run: |
strip target/release/macmon
cp target/release/macmon macmon
tar czf macmon-${{ github.ref_name }}.tar.gz readme.md LICENSE macmon
ls -lah | grep macmon
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "macmon"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[lints.rust]
Expand All @@ -10,6 +10,7 @@ unreachable_code = "allow"

[profile.release]
panic = "abort"
strip = false

[dependencies]
clap = {version = "4.5.7", features = ["derive"]}
Expand Down
19 changes: 16 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# macmon – Mac Monitor
# `macmon` – Mac Monitor

[<img src="https://badgen.net/github/release/vladkens/macmon" alt="version" />](https://github.com/vladkens/macmon/releases)
[<img src="https://badgen.net/github/license/vladkens/macmon" alt="license" />](https://github.com/vladkens/macmon/blob/main/LICENSE)
[<img src="https://badgen.net/static/-/buy%20me%20a%20coffee/ff813f?icon=buymeacoffee&label" alt="donate" />](https://buymeacoffee.com/vladkens)

<div align="center">
<img src=".github/macmon.png" alt="macmon preview" />
Expand All @@ -17,6 +21,8 @@ Apple Silicon processors don't provide an easy way to see live power consumption
- πŸ“Š CPU utilization per cluster
- πŸ’Ύ RAM / Swap usage
- πŸ“ˆ Historical charts + avg / max values
- 🌑️ Average CPU / GPU temperature
- 🎨 Switchable colors (6 variants)
- πŸͺŸ Can be rendered in a small window
- πŸ¦€ Written in Rust

Expand Down Expand Up @@ -51,13 +57,20 @@ sudo cp target/release/macmon /usr/local/bin
## πŸš€ Usage

```sh
Usage: macmon [OPTIONS]
Usage: macmon [OPTIONS] [COMMAND]

Commands:
raw Print raw metrics data instead of TUI
help Print this message or the help of the given subcommand(s)

Options:
-i, --interval <INTERVAL> Update interval in milliseconds [default: 1000]
--raw Print raw data instead of TUI
-h, --help Print help
-V, --version Print version

Controls:
c - change color
q - quit
```

## 🀝 Contributing
Expand Down

0 comments on commit 44ad6c0

Please sign in to comment.