changed name to nirgendwm
, bumped version
This commit is contained in:
parent
bc13bf43d6
commit
ba047217a6
|
@ -1,11 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "wm"
|
name = "wm"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = ["noonebtw <noonebtw@gmail.com>"]
|
authors = ["noonebtw <noonebtw@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "nowm"
|
name = "nirgendwm"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
@ -21,7 +21,7 @@ fn init_logger() {
|
||||||
|
|
||||||
let _logfile = FileAppender::builder()
|
let _logfile = FileAppender::builder()
|
||||||
.encoder(encoder)
|
.encoder(encoder)
|
||||||
.build(home.join(".local/portlights.log"))
|
.build(home.join(".local/nirgendwm.log"))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let config = Config::builder()
|
let config = Config::builder()
|
||||||
|
@ -44,7 +44,7 @@ fn main() {
|
||||||
log_prologue();
|
log_prologue();
|
||||||
|
|
||||||
let mut config_path = std::path::PathBuf::from(env!("HOME"));
|
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)
|
let config = std::fs::File::open(config_path)
|
||||||
.and_then(|mut file| {
|
.and_then(|mut file| {
|
||||||
|
|
Loading…
Reference in a new issue