mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-22 21:24:49 +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:
|
||||
|
||||
- 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.
|
||||
- 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
|
||||
|
||||
Formula available [here](https://formulae.brew.sh/formula/bottom):
|
||||
[Formula available here](https://formulae.brew.sh/formula/bottom):
|
||||
|
||||
```bash
|
||||
brew install bottom
|
||||
@ -336,7 +336,7 @@ brew install bottom
|
||||
|
||||
### MacPorts
|
||||
|
||||
Available [here](https://ports.macports.org/port/bottom/):
|
||||
[Available here](https://ports.macports.org/port/bottom/):
|
||||
|
||||
```bash
|
||||
sudo port selfupdate
|
||||
@ -345,7 +345,7 @@ sudo port install bottom
|
||||
|
||||
### Chocolatey
|
||||
|
||||
Chocolatey packages are located [here](https://chocolatey.org/packages/bottom):
|
||||
[Chocolatey packages are located here](https://chocolatey.org/packages/bottom):
|
||||
|
||||
```bash
|
||||
choco install bottom
|
||||
@ -361,7 +361,7 @@ scoop install bottom
|
||||
|
||||
### 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
|
||||
winget install bottom
|
||||
|
@ -1,17 +1,21 @@
|
||||
pub mod battery_info;
|
||||
pub mod cpu_graph;
|
||||
pub mod disk_graph;
|
||||
pub mod disk_table;
|
||||
pub mod mem_graph;
|
||||
pub mod network_graph;
|
||||
pub mod process_table;
|
||||
pub mod temp_graph;
|
||||
pub mod temperature_table;
|
||||
//! The "widgets" of bottom.
|
||||
|
||||
mod battery_info;
|
||||
mod cpu_graph;
|
||||
mod disk_graph;
|
||||
mod disk_table;
|
||||
mod mem_graph;
|
||||
mod network_graph;
|
||||
mod process_table;
|
||||
mod temperature_graph;
|
||||
mod temperature_table;
|
||||
|
||||
pub use battery_info::*;
|
||||
pub use cpu_graph::*;
|
||||
pub use disk_graph::*;
|
||||
pub use disk_table::*;
|
||||
pub use mem_graph::*;
|
||||
pub use network_graph::*;
|
||||
pub use process_table::*;
|
||||
pub use temperature_graph::*;
|
||||
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