changed name to nirgendwm, bumped version

This commit is contained in:
Janis 2022-05-08 13:16:05 +02:00
parent bc13bf43d6
commit ba047217a6
2 changed files with 4 additions and 4 deletions

View file

@ -1,11 +1,11 @@
[package]
name = "wm"
version = "0.2.0"
version = "0.2.1"
authors = ["noonebtw <noonebtw@gmail.com>"]
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

View file

@ -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| {