diff --git a/README.md b/README.md index 8c3c435..17833cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# A [river](https://github.com/ifreund/river)-status client +# A [river-status](https://github.com/ifreund/river) client This client is useful if you want to have a module for somethig like [eww](https://github.com/elkowar/eww) or [waybar](https://github.com/Alexays/Waybar) with status information like the window title, the focused tag and the tag of views. diff --git a/src/main.rs b/src/main.rs index 777e7a1..3171ae6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -97,11 +97,11 @@ fn main() { "--view-tags" | "-vt" => enable_views_tag = true, "--help" | "-h" | "--h" => { print!("Usage: ristate [option]\n\n"); - print!(" --monitor | -m : select the monitor\n"); - print!(" --seat | -s : select the seat\n"); - print!(" --tag | -t : displays the focused tag\n"); - print!(" --view-tags | -vt : displays the tag of all views\n"); - println!(" --window-title | -w : displays the title of the focused view\n"); + print!(" -s | --seat select the seat\n"); + print!(" -m | --monitor select the monitor\n"); + print!(" -t | --tag displays the focused tag\n"); + print!(" -vt | --view-tags displays the tag of all views\n"); + println!(" -w | --window-title displays the title of the focused view\n"); std::process::exit(0); } _ => break,