mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-26 07:04:51 +02:00
[skip travis] Changed name and some minor things.
This commit is contained in:
parent
10abcd74af
commit
f5873db9ac
@ -1,9 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rustop"
|
name = "bottom"
|
||||||
version = "0.1.0-alpha.1"
|
version = "0.1.0-alpha.1"
|
||||||
authors = ["ClementTsang <clementjhtsang@gmail.com>"]
|
authors = ["ClementTsang <clementjhtsang@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/ClementTsang/rustop"
|
repository = "https://github.com/ClementTsang/bottom"
|
||||||
keywords = ["cli", "monitor", "process", "system"]
|
keywords = ["cli", "monitor", "process", "system"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
categories = ["command-line-utilities"]
|
categories = ["command-line-utilities"]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# rustop
|
# bottom
|
||||||
|
|
||||||
[](https://travis-ci.com/ClementTsang/rustop)
|
[](https://travis-ci.com/ClementTsang/rustop)
|
||||||
|
|
||||||
@ -11,11 +11,11 @@ A top clone, written in Rust. Inspired by both [gtop](https://github.com/aksaka
|
|||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
TODO: Write
|
You can install by cloning and using ``cargo build --release``, use ``cargo install rustop``, or download the pre-compiled binary in Releases.
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
TODO: Test
|
This is still in development.
|
||||||
|
|
||||||
### MacOS
|
### MacOS
|
||||||
|
|
||||||
|
2
TODO.md
2
TODO.md
@ -22,6 +22,8 @@ Note this will probably migrate to GitHub's native Issues; this was mostly for p
|
|||||||
|
|
||||||
## After making public
|
## After making public
|
||||||
|
|
||||||
|
* Travis
|
||||||
|
|
||||||
* Scaling in and out (zoom), may need to show zoom levels
|
* Scaling in and out (zoom), may need to show zoom levels
|
||||||
|
|
||||||
* More keybinds
|
* More keybinds
|
||||||
|
@ -38,9 +38,9 @@ fn main() -> error::Result<()> {
|
|||||||
|
|
||||||
// Parse command line options
|
// Parse command line options
|
||||||
let matches = clap_app!(app =>
|
let matches = clap_app!(app =>
|
||||||
(name: "rustop")
|
(name: crate_name!())
|
||||||
(version: crate_version!())
|
(version: crate_version!())
|
||||||
(author: "Clement Tsang <clementjhtsang@gmail.com>")
|
(author: crate_authors!())
|
||||||
(about: "A graphical top clone.")
|
(about: "A graphical top clone.")
|
||||||
//(@arg THEME: -t --theme +takes_value "Sets a colour theme.")
|
//(@arg THEME: -t --theme +takes_value "Sets a colour theme.")
|
||||||
(@arg AVG_CPU: -a --avgcpu "Enables showing the average CPU usage.")
|
(@arg AVG_CPU: -a --avgcpu "Enables showing the average CPU usage.")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user