mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 06:34:16 +00:00
[skip travis] Changed name and some minor things.
This commit is contained in:
parent
10abcd74af
commit
f5873db9ac
4 changed files with 9 additions and 7 deletions
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "rustop"
|
||||
name = "bottom"
|
||||
version = "0.1.0-alpha.1"
|
||||
authors = ["ClementTsang <clementjhtsang@gmail.com>"]
|
||||
edition = "2018"
|
||||
repository = "https://github.com/ClementTsang/rustop"
|
||||
repository = "https://github.com/ClementTsang/bottom"
|
||||
keywords = ["cli", "monitor", "process", "system"]
|
||||
license = "MIT"
|
||||
categories = ["command-line-utilities"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# rustop
|
||||
# bottom
|
||||
|
||||
[![Build Status](https://travis-ci.com/ClementTsang/rustop.svg?token=1wvzVgp94E1TZyPNs8JF&branch=master)](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
|
||||
|
||||
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
|
||||
|
||||
TODO: Test
|
||||
This is still in development.
|
||||
|
||||
### 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
|
||||
|
||||
* Travis
|
||||
|
||||
* Scaling in and out (zoom), may need to show zoom levels
|
||||
|
||||
* More keybinds
|
||||
|
|
|
@ -38,9 +38,9 @@ fn main() -> error::Result<()> {
|
|||
|
||||
// Parse command line options
|
||||
let matches = clap_app!(app =>
|
||||
(name: "rustop")
|
||||
(name: crate_name!())
|
||||
(version: crate_version!())
|
||||
(author: "Clement Tsang <clementjhtsang@gmail.com>")
|
||||
(author: crate_authors!())
|
||||
(about: "A graphical top clone.")
|
||||
//(@arg THEME: -t --theme +takes_value "Sets a colour theme.")
|
||||
(@arg AVG_CPU: -a --avgcpu "Enables showing the average CPU usage.")
|
||||
|
|
Loading…
Reference in a new issue