clauddy 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,15 +52,15 @@ Plus a welcome **wave** on launch. You can [poke the pet from the terminal](#pla
|
|
|
52
52
|
|
|
53
53
|
macOS (Apple Silicon). Two ways, depending on what you want:
|
|
54
54
|
|
|
55
|
-
### 1.
|
|
55
|
+
### 1. Install as an app — opens at login (recommended)
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
One command — it downloads the latest release and drops it in `/Applications`:
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
```bash
|
|
60
|
+
curl -fsSL https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/install.sh | bash
|
|
61
|
+
```
|
|
62
62
|
|
|
63
|
-
It registers itself in **Login Items**, so it **starts automatically** with your Mac — set it and forget it.
|
|
63
|
+
No Gatekeeper warning: files fetched with `curl` aren't quarantined like browser downloads, so the (unsigned) app just opens. It registers itself in **Login Items**, so it **starts automatically** with your Mac — set it and forget it.
|
|
64
64
|
|
|
65
65
|
### 2. Run it via `bunx` (no install)
|
|
66
66
|
|
|
@@ -74,6 +74,19 @@ The first run downloads Electron, so give it a moment. Handy for a quick run, bu
|
|
|
74
74
|
|
|
75
75
|
> The app keeps its data in `~/.claude-usage-monitor`, regardless of how you run it.
|
|
76
76
|
|
|
77
|
+
<details>
|
|
78
|
+
<summary>Prefer to download the app by hand?</summary>
|
|
79
|
+
|
|
80
|
+
Grab the **`…-mac.zip`** from [Releases](https://github.com/renatoaug/claude-usage-monitor/releases/latest), unzip, and drag the app to `/Applications`. The browser quarantines it, so macOS will call it *"damaged"* — clear the flag once (Terminal needs **Full Disk Access**):
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
xattr -dr com.apple.quarantine "/Applications/Claude Usage Monitor.app"
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
The `curl` installer above avoids all of this.
|
|
87
|
+
|
|
88
|
+
</details>
|
|
89
|
+
|
|
77
90
|
## Controls
|
|
78
91
|
|
|
79
92
|
- **Drag** the widget anywhere on screen
|