diff --git a/Cargo.toml b/Cargo.toml index c7534c5..e633f9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "wm" -version = "0.2.0" +version = "0.2.1" authors = ["noonebtw "] edition = "2018" [[bin]] -name = "nowm" +name = "nirgendwm" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/main.rs b/src/main.rs index 333f729..5ed8997 100644 --- a/src/main.rs +++ b/src/main.rs @@ -21,7 +21,7 @@ fn init_logger() { let _logfile = FileAppender::builder() .encoder(encoder) - .build(home.join(".local/portlights.log")) + .build(home.join(".local/nirgendwm.log")) .unwrap(); let config = Config::builder() @@ -44,7 +44,7 @@ fn main() { log_prologue(); let mut config_path = std::path::PathBuf::from(env!("HOME")); - config_path.push(".config/nowm.toml"); + config_path.push(".config/nirgendwm.toml"); let config = std::fs::File::open(config_path) .and_then(|mut file| {