Skip to content

Commit edd38b5

Browse files
authored
Merge pull request #34 from context-labs/development
v0.2.0
2 parents 79e9f1c + 833f113 commit edd38b5

File tree

5 files changed

+451
-435
lines changed

5 files changed

+451
-435
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [metaspartan]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
- Two layouts: default and alternative
2424
- Customizable UI color (green, red, blue, cyan, magenta, yellow, and white)
2525
- Customizable update interval (default is 1000ms)
26+
- Processes list (sorted by CPU usage)
27+
- Disk Storage (Used, Total, Available)
28+
- Party Mode (Randomly cycles through colors)
2629
- Support for all Apple Silicon models.
2730

2831
## Install via Homebrew
@@ -95,6 +98,8 @@ Options are 'green', 'red', 'blue', 'cyan', 'magenta', 'yellow', and 'white'. (-
9598
Use the following keys to interact with the application while its running:
9699
- `q`: Quit the application.
97100
- `r`: Refresh the UI data manually.
101+
- `c`: Cycle through the color themes.
102+
- `p`: Party Mode (Randomly cycles through colors)
98103
- `l`: Toggle the main display's layout.
99104
- `h`: Toggle the help menu.
100105

@@ -115,6 +120,9 @@ Use the following keys to interact with the application while its running:
115120
- M3
116121
- M3 Pro
117122
- M3 Max
123+
- M4
124+
- M4 Pro
125+
- M4 Max
118126

119127
(If you have a confirmed working M series chip that is not listed, please open an issue, so we may add it here!)
120128

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ require (
1717
github.com/stretchr/testify v1.2.2 // indirect
1818
github.com/yusufpapurcu/wmi v1.2.4 // indirect
1919
golang.org/x/sys v0.19.0 // indirect
20+
howett.net/plist v1.0.1 // indirect
2021
)

go.sum

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ github.com/gizak/termui/v3 v3.1.0 h1:ZZmVDgwHl7gR7elfKf1xc4IudXZ5qqfDh4wExk4Iajc
44
github.com/gizak/termui/v3 v3.1.0/go.mod h1:bXQEBkJpzxUAKf0+xq9MSWAvWZlE7c+aidmyFlkYTrY=
55
github.com/go-ole/go-ole v1.2.6 h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY=
66
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
7+
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
78
github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=
89
github.com/mattn/go-runewidth v0.0.4 h1:2BvfKmzob6Bmd4YsL0zygOqfdFnK7GR4QL06Do4/p7Y=
910
github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=
@@ -23,3 +24,7 @@ github.com/yusufpapurcu/wmi v1.2.4/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQ
2324
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
2425
golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
2526
golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
27+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
28+
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP89i0kNg=
29+
howett.net/plist v1.0.1 h1:37GdZ8tP09Q35o9ych3ehygcsL+HqKSwzctveSlarvM=
30+
howett.net/plist v1.0.1/go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g=

0 commit comments

Comments
 (0)