From f5873db9ac432dc2d19e30359ca64595822678e4 Mon Sep 17 00:00:00 2001
From: ClementTsang <clementjhtsang@gmail.com>
Date: Mon, 16 Sep 2019 22:54:39 -0400
Subject: [PATCH] [skip travis] Changed name and some minor things.

---
 Cargo.toml  | 4 ++--
 README.md   | 6 +++---
 TODO.md     | 2 ++
 src/main.rs | 4 ++--
 4 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index e81c106f..4dd4786c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]
diff --git a/README.md b/README.md
index 52d354e2..ef474d8f 100644
--- a/README.md
+++ b/README.md
@@ -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
 
diff --git a/TODO.md b/TODO.md
index d9b07147..3752b7d9 100644
--- a/TODO.md
+++ b/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
diff --git a/src/main.rs b/src/main.rs
index fc753d7f..5e1546b0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -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.")