mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-23 05:34:57 +02:00
some refactoring and docs stuff
This commit is contained in:
parent
164ba0780c
commit
c0cbdab688
10
README.md
10
README.md
@ -116,7 +116,7 @@ For more details on supported platforms and known problems, check out [the docum
|
|||||||
|
|
||||||
bottom may work on a number of platforms that aren't officially supported. Note that unsupported platforms:
|
bottom may work on a number of platforms that aren't officially supported. Note that unsupported platforms:
|
||||||
|
|
||||||
- Might not be tested in CI to build or pass tests (see [here](./.github/workflows/ci.yml) for checked platforms).
|
- Might not be tested in CI to build or pass tests ([checked platforms can be found here](./.github/workflows/ci.yml)).
|
||||||
- Might not be properly tested by maintainers prior to a stable release.
|
- Might not be properly tested by maintainers prior to a stable release.
|
||||||
- May only receive limited support, such as missing features or bugs that may not be fixed.
|
- May only receive limited support, such as missing features or bugs that may not be fixed.
|
||||||
|
|
||||||
@ -328,7 +328,7 @@ sudo xbps-install bottom
|
|||||||
|
|
||||||
### Homebrew
|
### Homebrew
|
||||||
|
|
||||||
Formula available [here](https://formulae.brew.sh/formula/bottom):
|
[Formula available here](https://formulae.brew.sh/formula/bottom):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
brew install bottom
|
brew install bottom
|
||||||
@ -336,7 +336,7 @@ brew install bottom
|
|||||||
|
|
||||||
### MacPorts
|
### MacPorts
|
||||||
|
|
||||||
Available [here](https://ports.macports.org/port/bottom/):
|
[Available here](https://ports.macports.org/port/bottom/):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo port selfupdate
|
sudo port selfupdate
|
||||||
@ -345,7 +345,7 @@ sudo port install bottom
|
|||||||
|
|
||||||
### Chocolatey
|
### Chocolatey
|
||||||
|
|
||||||
Chocolatey packages are located [here](https://chocolatey.org/packages/bottom):
|
[Chocolatey packages are located here](https://chocolatey.org/packages/bottom):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
choco install bottom
|
choco install bottom
|
||||||
@ -361,7 +361,7 @@ scoop install bottom
|
|||||||
|
|
||||||
### winget
|
### winget
|
||||||
|
|
||||||
The winget package can be found [here](https://github.com/microsoft/winget-pkgs/tree/master/manifests/c/Clement/bottom):
|
[The winget package can be found here](https://github.com/microsoft/winget-pkgs/tree/master/manifests/c/Clement/bottom):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
winget install bottom
|
winget install bottom
|
||||||
|
@ -1,17 +1,21 @@
|
|||||||
pub mod battery_info;
|
//! The "widgets" of bottom.
|
||||||
pub mod cpu_graph;
|
|
||||||
pub mod disk_graph;
|
mod battery_info;
|
||||||
pub mod disk_table;
|
mod cpu_graph;
|
||||||
pub mod mem_graph;
|
mod disk_graph;
|
||||||
pub mod network_graph;
|
mod disk_table;
|
||||||
pub mod process_table;
|
mod mem_graph;
|
||||||
pub mod temp_graph;
|
mod network_graph;
|
||||||
pub mod temperature_table;
|
mod process_table;
|
||||||
|
mod temperature_graph;
|
||||||
|
mod temperature_table;
|
||||||
|
|
||||||
pub use battery_info::*;
|
pub use battery_info::*;
|
||||||
pub use cpu_graph::*;
|
pub use cpu_graph::*;
|
||||||
|
pub use disk_graph::*;
|
||||||
pub use disk_table::*;
|
pub use disk_table::*;
|
||||||
pub use mem_graph::*;
|
pub use mem_graph::*;
|
||||||
pub use network_graph::*;
|
pub use network_graph::*;
|
||||||
pub use process_table::*;
|
pub use process_table::*;
|
||||||
|
pub use temperature_graph::*;
|
||||||
pub use temperature_table::*;
|
pub use temperature_table::*;
|
||||||
|
@ -1 +0,0 @@
|
|||||||
//! Code for a temperature graph widget.
|
|
1
src/widgets/temperature_graph.rs
Normal file
1
src/widgets/temperature_graph.rs
Normal file
@ -0,0 +1 @@
|
|||||||
|
//! Code for a temperature graph widget.
|
Loading…
x
Reference in New Issue
Block a user