From e8d5fd5a522f3a9bc45203588eea94444992ee72 Mon Sep 17 00:00:00 2001 From: Breadway Date: Fri, 10 Jul 2026 18:04:31 +0800 Subject: [PATCH] Set layer-shell namespace to breadbar, bump version to 0.2.4 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 78efbfb..a277271 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ [[package]] name = "breadbar" -version = "0.2.3" +version = "0.2.4" dependencies = [ "bread-theme", "futures-lite", diff --git a/Cargo.toml b/Cargo.toml index 0f562ff..de80fcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "breadbar" -version = "0.2.3" +version = "0.2.4" edition = "2021" description = "Minimal status bar and notification daemon for Hyprland on Wayland" license = "MIT" diff --git a/src/main.rs b/src/main.rs index b10c130..2767846 100644 --- a/src/main.rs +++ b/src/main.rs @@ -123,6 +123,7 @@ impl SimpleComponent for App { sender: ComponentSender, ) -> ComponentParts { root.init_layer_shell(); + root.set_namespace(Some("breadbar")); root.set_layer(Layer::Top); root.set_anchor(Edge::Top, true); root.set_anchor(Edge::Left, true);