Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
b500fa26a1 | ||
|
e9f8b03cd7 |
3 changed files with 13 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ewwbar"
|
||||
version = "0.1.0"
|
||||
version = "0.1.2"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "ewwbar";
|
||||
version = "1.0.0";
|
||||
version = "0.1.2";
|
||||
|
||||
src = builtins.path { path = ./.; name = "ewwbar"; };
|
||||
|
||||
|
|
11
src/main.rs
11
src/main.rs
|
@ -19,6 +19,15 @@ fn main() -> Result<(), Box<dyn Error>> {
|
|||
// Set `RUST_LOG=debug` to see extra debug information.
|
||||
env_logger::init();
|
||||
|
||||
let exe_path = std::env::current_exe()?
|
||||
.parent()
|
||||
.unwrap()
|
||||
.to_str()
|
||||
.unwrap()
|
||||
.to_owned();
|
||||
let config_path = exe_path + "/eww";
|
||||
println!("Path: {}", config_path);
|
||||
|
||||
// Try to connect to the Wayland server.
|
||||
let conn = Connection::connect_to_env()?;
|
||||
|
||||
|
@ -72,7 +81,7 @@ fn main() -> Result<(), Box<dyn Error>> {
|
|||
"--arg",
|
||||
"height=30",
|
||||
"--config",
|
||||
CONFIG_DIR,
|
||||
&config_path,
|
||||
])
|
||||
.spawn()
|
||||
.expect("failed to execute process");
|
||||
|
|
Loading…
Add table
Reference in a new issue