msiltop 0.2.1__tar.gz → 0.2.2__tar.gz

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.
@@ -81,7 +81,7 @@ pip install msiltop
81
81
  sudo uv run msiltop
82
82
 
83
83
  # Run with options
84
- sudo uv run msiltop --interval 2 --color 5 --avg 60 --show_cores
84
+ sudo uv run msiltop --interval 2 --theme cyan --avg 60 --show_cores
85
85
 
86
86
  # Alternative: run the module directly
87
87
  sudo uv run -m msiltop.msiltop
@@ -99,12 +99,13 @@ sudo msiltop
99
99
  msiltop
100
100
 
101
101
  # With options
102
- msiltop --interval 2 --color 5 --avg 60 --show_cores
102
+ msiltop --interval 2 --theme cyan --avg 60 --show_cores
103
103
  ```
104
104
 
105
105
  ### Available Command Line Options
106
106
  - `--interval INTERVAL`: Display and powermetrics sampling interval (seconds, default: 1)
107
- - `--color COLOR`: Color theme selection 0-8 (default: 2)
107
+ - `--theme THEME`: Color theme selection (default: cyan)
108
+ - Options: default, dark, blue, green, red, purple, orange, cyan, magenta
108
109
  - `--avg AVG`: Averaging window for power values (seconds, default: 30)
109
110
  - `--show_cores`: Enable individual core monitoring display
110
111
  - `--max_count COUNT`: Restart powermetrics after N samples (for long-running sessions)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: msiltop
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Real-time macOS hardware performance monitoring for Apple Silicon (M1/M2/M3/M4) with AI workload focus - enhanced asitop alternative
5
5
  Project-URL: Homepage, https://github.com/pratikdevnani/msiltop
6
6
  Project-URL: Repository, https://github.com/pratikdevnani/msiltop
@@ -63,7 +63,7 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
63
63
  sudo uvx msiltop
64
64
 
65
65
  # Run with custom options
66
- sudo uvx msiltop --interval 2 --color 5 --avg 60
66
+ sudo uvx msiltop --interval 2 --theme cyan --avg 60
67
67
 
68
68
  # Or install as a tool for regular usages
69
69
  uv tool install msiltop@latest -U
@@ -77,7 +77,7 @@ uv tool install msiltop@latest -U
77
77
 
78
78
  ```bash
79
79
  # Run with custom options
80
- sudo uvx msiltop --interval 2 --color 5 --avg 60
80
+ sudo uvx msiltop --interval 2 --theme cyan --avg 60
81
81
  ```
82
82
 
83
83
  ### Install from PyPI
@@ -131,7 +131,8 @@ msiltop [OPTIONS]
131
131
 
132
132
  Options:
133
133
  --interval INTERVAL Display refresh rate in seconds (default: 1.0)
134
- --color COLOR Color theme selection 0-8 (default: 2)
134
+ --theme THEME Color theme selection (default: cyan)
135
+ Options: default, dark, blue, green, red, purple, orange, cyan, magenta
135
136
  --avg AVG Power averaging window in seconds (default: 30)
136
137
  --show_cores Enable individual CPU core monitoring
137
138
  --max_count COUNT Restart powermetrics after N samples (stability)
@@ -150,8 +151,8 @@ sudo msiltop --interval 0.5 --show_cores
150
151
  # Long-term monitoring with 60-second power averaging
151
152
  sudo msiltop --avg 60 --max_count 1000
152
153
 
153
- # Custom color theme
154
- sudo msiltop --color 5
154
+ # Custom theme
155
+ sudo msiltop --theme purple
155
156
  ```
156
157
 
157
158
  ## 🔧 How MSILTOP Works
@@ -24,7 +24,7 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
24
24
  sudo uvx msiltop
25
25
 
26
26
  # Run with custom options
27
- sudo uvx msiltop --interval 2 --color 5 --avg 60
27
+ sudo uvx msiltop --interval 2 --theme cyan --avg 60
28
28
 
29
29
  # Or install as a tool for regular usages
30
30
  uv tool install msiltop@latest -U
@@ -38,7 +38,7 @@ uv tool install msiltop@latest -U
38
38
 
39
39
  ```bash
40
40
  # Run with custom options
41
- sudo uvx msiltop --interval 2 --color 5 --avg 60
41
+ sudo uvx msiltop --interval 2 --theme cyan --avg 60
42
42
  ```
43
43
 
44
44
  ### Install from PyPI
@@ -92,7 +92,8 @@ msiltop [OPTIONS]
92
92
 
93
93
  Options:
94
94
  --interval INTERVAL Display refresh rate in seconds (default: 1.0)
95
- --color COLOR Color theme selection 0-8 (default: 2)
95
+ --theme THEME Color theme selection (default: cyan)
96
+ Options: default, dark, blue, green, red, purple, orange, cyan, magenta
96
97
  --avg AVG Power averaging window in seconds (default: 30)
97
98
  --show_cores Enable individual CPU core monitoring
98
99
  --max_count COUNT Restart powermetrics after N samples (stability)
@@ -111,8 +112,8 @@ sudo msiltop --interval 0.5 --show_cores
111
112
  # Long-term monitoring with 60-second power averaging
112
113
  sudo msiltop --avg 60 --max_count 1000
113
114
 
114
- # Custom color theme
115
- sudo msiltop --color 5
115
+ # Custom theme
116
+ sudo msiltop --theme purple
116
117
  ```
117
118
 
118
119
  ## 🔧 How MSILTOP Works
@@ -86,7 +86,7 @@ sudo msiltop
86
86
 
87
87
  Try these solutions:
88
88
  1. Resize your terminal window to be larger
89
- 2. Use a different color theme: `sudo msiltop --color 0`
89
+ 2. Use a different theme: `sudo msiltop --theme default`
90
90
  3. Clear your terminal: `clear` before running FluidTop
91
91
  4. Update to the latest version: `uv tool install msiltop@latest -U`
92
92
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "msiltop"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Real-time macOS hardware performance monitoring for Apple Silicon (M1/M2/M3/M4) with AI workload focus - enhanced asitop alternative"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes