Browse Source

Rename to rusttray

Thomas Dy 7 years ago
parent
commit
e7f3171c13
4 changed files with 5 additions and 5 deletions
  1. 1 1
      Cargo.lock
  2. 1 1
      Cargo.toml
  3. 2 2
      README.md
  4. 1 1
      src/main.rs

+ 1 - 1
Cargo.lock

@@ -1,5 +1,5 @@
 [root]
-name = "rustray"
+name = "rusttray"
 version = "0.1.0"
 dependencies = [
  "chan 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",

+ 1 - 1
Cargo.toml

@@ -1,5 +1,5 @@
 [package]
-name = "rustray"
+name = "rusttray"
 version = "0.1.0"
 authors = ["Thomas Dy <thatsmydoing@gmail.com>"]
 

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# rustray
+# rusttray
 
 A rudimentary system tray implemented in Rust.
 
@@ -7,7 +7,7 @@ primarily wrote it to understand how the system tray mechanics work in X. This
 doesn't actually implement all of the system tray specification but it works for
 most of the programs I use.
 
-rustray only implements XEMBED style icons. The tray icons themselves perform
+rusttray only implements XEMBED style icons. The tray icons themselves perform
 the drawing and the tray only manages their sizes and positions. It does not
 draw icons by itself. In addition, balloon messages are not handled as well.
 

+ 1 - 1
src/main.rs

@@ -12,7 +12,7 @@ use std::process;
 use std::thread;
 use std::sync::Arc;
 
-const PROGRAM: &'static str = "rustray";
+const PROGRAM: &'static str = "rusttray";
 const EXIT_WRONG_ARGS: i32 = 1;
 const EXIT_FAILED_CONNECT: i32 = 10;
 const EXIT_FAILED_SELECT: i32 = 11;