okisys 1.0.1 → 1.0.2
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 +34 -12
- package/package.json +1 -6
package/README.md
CHANGED
|
@@ -4,28 +4,50 @@ A terminal-based system dashboard built with [Ink](https://github.com/vadimdemed
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx okisys
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or install globally:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g okisys
|
|
17
|
+
okisys
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Requires Node.js 18 or higher.
|
|
21
|
+
|
|
7
22
|
## What it shows
|
|
8
23
|
|
|
9
|
-
- **System Specs** — CPU, GPU, RAM (type/speed/slots), storage, OS
|
|
10
|
-
- **Performance** — live CPU, RAM, and GPU usage with progress bars
|
|
11
|
-
- **Network** — interface name, download/upload speed, internet latency
|
|
12
|
-
- **Command
|
|
24
|
+
- **System Specs** — CPU, GPU model/VRAM/driver, RAM (type/speed/slots), storage, OS, hostname, architecture
|
|
25
|
+
- **Performance** — live CPU, RAM, and GPU usage with progress bars, refreshed every 5 seconds
|
|
26
|
+
- **Network** — interface name/type/IPv4/status, download/upload speed, internet latency
|
|
27
|
+
- **Command List** — available commands at a glance
|
|
13
28
|
|
|
14
29
|
## Commands
|
|
15
30
|
|
|
16
31
|
| Command | Description |
|
|
17
32
|
|---|---|
|
|
18
|
-
| `goto <url>` | Open a URL in your browser |
|
|
19
|
-
| `search <query>` | Search
|
|
20
|
-
| `github <username>` | Open a GitHub profile |
|
|
33
|
+
| `goto <url>` | Open a URL in your browser (adds `https://` if missing) |
|
|
34
|
+
| `search <query>` | Search Google in your browser |
|
|
35
|
+
| `github <username>` | Open a GitHub profile (shows error if user doesn't exist) |
|
|
36
|
+
| `time` | Show the current time |
|
|
37
|
+
| `clear` | Clear the output |
|
|
38
|
+
| `okisys` | Open the OkiSys repository on GitHub |
|
|
21
39
|
| `exit` | Quit |
|
|
22
|
-
| `okisys` | Open OkiSys repository on github |
|
|
23
|
-
| `time` | Get current time |
|
|
24
40
|
|
|
25
|
-
Use the up/down arrow keys to cycle through command history.
|
|
41
|
+
Use the **up/down arrow keys** to cycle through command history. History is saved to `~/.okisys_history`.
|
|
26
42
|
|
|
27
|
-
##
|
|
43
|
+
## Development
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npm run dev
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
To build the distributable bundle:
|
|
28
50
|
|
|
29
51
|
```bash
|
|
30
|
-
npm
|
|
52
|
+
npm run build
|
|
31
53
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "okisys",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A terminal system monitor and command launcher built with Ink",
|
|
5
5
|
"main": "dist/okisys",
|
|
6
6
|
"bin": {
|
|
@@ -28,15 +28,10 @@
|
|
|
28
28
|
"node": ">=18"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"chalk": "^5.6.2",
|
|
32
|
-
"chalk-animation": "^2.0.3",
|
|
33
31
|
"figlet": "^1.11.0",
|
|
34
|
-
"gradient-string": "^3.0.0",
|
|
35
32
|
"ink": "^7.0.5",
|
|
36
33
|
"ink-spinner": "^5.0.0",
|
|
37
34
|
"ink-text-input": "^6.0.0",
|
|
38
|
-
"inquirer": "^14.0.2",
|
|
39
|
-
"nanospinner": "^1.2.2",
|
|
40
35
|
"open": "^11.0.0",
|
|
41
36
|
"systeminformation": "^5.31.7"
|
|
42
37
|
},
|