idk what git is doing to meeee

main
Zynh0722 2024-01-31 17:01:07 -08:00
parent 2124b44725
commit c220ea2a16
1 changed files with 9 additions and 4 deletions

View File

@ -25,16 +25,21 @@ fn become_wm<C: Connection>(conn: &C, screen: &Screen) -> anyhow::Result<()> {
res.map_err(|e| anyhow!(e)) res.map_err(|e| anyhow!(e))
} }
fn main() -> anyhow::Result<()> { fn handle_args() {
let mut args = std::env::args().skip(1); let mut args = std::env::args().skip(1);
if let Some(arg) = args.next() { if let Some(arg) = args.next() {
if arg != "-v" { if arg != "-v" {
return Err(anyhow!("usage: rswm [-v]")); eprintln!("usage: rswm [-v]");
exit(1);
} else { } else {
println!(env!("CARGO_PKG_VERSION")); // TODO: test this println!("rswm-{}", env!("CARGO_PKG_VERSION"));
return Ok(()); exit(0);
} }
} }
}
fn main() -> anyhow::Result<()> {
handle_args();
// TODO: Investigate LC_CTYPE and Locale stuff from dwm // TODO: Investigate LC_CTYPE and Locale stuff from dwm