You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -17,7 +18,9 @@ Monitoring information for your [tmux](https://tmux.github.io) status line.
17
18
Installation
18
19
------------
19
20
20
-
This tool is written in [Go](http://golang.org/). If you want to compile it, you have to [setup your Go environment](http://golang.org/doc/install) first.
21
+
This tool is written in [Go](http://golang.org/). You have to compile it yourself -- there are no binaries being provided.
22
+
23
+
[This is how you can setup your Go environment](http://golang.org/doc/install).
21
24
22
25
#### Supported platforms
23
26
@@ -54,12 +57,71 @@ $ sudo make install
54
57
Usage
55
58
-----
56
59
57
-
There are four subcommands at the moment:
58
-
59
60
1.`tmux-top load` — load of your workstation
60
61
2.`tmux-top mem` — actual memry usage and total memory
61
62
3.`tmux-top net` — network statistics: IP address, network interface and current bandwidth
62
63
4.`tmux-top io` — I/O statistics: current reads and writes
64
+
4.`tmux-top sensors` — show sensor stats (temperature)
65
+
66
+
67
+
Sensors
68
+
-------
69
+
70
+
With `sensors` command, I am trying to pursue a new design of `tmux-top`,
71
+
utilizing [Go templates](https://golang.org/pkg/text/template/). The idea is
72
+
that `tmux-top` will just gather the data and offer it to you as Go structs
73
+
which you can easily utilize and display by writing a Go template. There will
74
+
be a sensible default.
75
+
76
+
You can easily print what data is available to you:
0 commit comments