@ziuus/vanta 0.2.0 → 0.2.1
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 +7 -10
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -60,9 +60,6 @@ npm install -g @ziuus/vanta && vanta
|
|
|
60
60
|
npx @ziuus/vanta
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
The npm install puts down two commands for the same binary — `vanta` and the
|
|
64
|
-
shorter `vtui`. A `cargo install` gives you `vanta` only.
|
|
65
|
-
|
|
66
63
|
### Requirements
|
|
67
64
|
|
|
68
65
|
Linux (vanta reads `/proc` and `/sys`). Building from source also needs `libdbus`:
|
|
@@ -86,16 +83,16 @@ Optional tools that light up extra panels — vanta degrades quietly without the
|
|
|
86
83
|
## Managing vanta
|
|
87
84
|
|
|
88
85
|
```bash
|
|
89
|
-
vanta --version
|
|
90
|
-
vanta --help
|
|
86
|
+
vanta --version # what am I running
|
|
87
|
+
vanta --help # usage + keys
|
|
91
88
|
|
|
92
|
-
npm update -g @ziuus/vanta
|
|
93
|
-
|
|
89
|
+
npm update -g @ziuus/vanta # update (npm)
|
|
90
|
+
npm uninstall -g @ziuus/vanta # remove (npm)
|
|
94
91
|
|
|
95
|
-
|
|
96
|
-
cargo uninstall vanta
|
|
92
|
+
cargo install --git https://github.com/ziuus/vanta --force # update (cargo)
|
|
93
|
+
cargo uninstall vanta # remove (cargo)
|
|
97
94
|
|
|
98
|
-
rm -rf ~/.config/vanta
|
|
95
|
+
rm -rf ~/.config/vanta # drop config + persisted theme/page
|
|
99
96
|
```
|
|
100
97
|
|
|
101
98
|
Where things live:
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziuus/vanta",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Aesthetic Rust TUI system dashboard — CPU, memory, disk, network, GPU, processes, now-playing, clock and visualizer in one terminal pane",
|
|
5
5
|
"bin": {
|
|
6
|
-
"vanta": "bin/vanta.js"
|
|
7
|
-
"vtui": "bin/vanta.js"
|
|
6
|
+
"vanta": "bin/vanta.js"
|
|
8
7
|
},
|
|
9
8
|
"scripts": {
|
|
10
9
|
"prepack": "cp ../README.md ../LICENSE . && sed -i 's|src=\"docs/|src=\"https://raw.githubusercontent.com/ziuus/vanta/main/docs/|g' README.md",
|