git.lucas.co / cce-notifier
notification daemon
git clone https://git.lucas.co/cce-notifier.git

commitd2a2d5d3953515127db34b32cb4757b516ad14bb
parentc4dd0ed02c
authorLucas Galante <[email protected]>
date2026-06-29 21:16
refactor: adapt to cce-ui event layering and renaming changes

 Cargo.toml  | 2 +-
 Makefile    | 2 +-
 src/main.rs | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 9804f35..f14ad11 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
 [package]
-name = "cce-notification-daemon"
+name = "cce-notifier"
 version = "0.1.0"
 edition = "2021"
 
diff --git a/Makefile b/Makefile
index 7afda27..9a1ab80 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ build:
 
 install: build
 	mkdir -p ~/.local/bin
-	install -m 755 ../target/release/cce-notification-daemon ~/.local/bin/cce-notification-daemon
+	install -m 755 ../target/release/cce-notifier ~/.local/bin/cce-notifier
 
 run:
 	cargo run
diff --git a/src/main.rs b/src/main.rs
index 6c17fc4..92df898 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -163,7 +163,7 @@ impl NotificationApp {
             qh,
             surface.clone(),
             Layer::Overlay,
-            Some("clear-notification-daemon".to_string()),
+            Some("cce-notifier".to_string()),
             None,
         );
         window.set_size(logical_w, logical_h);
@@ -885,7 +885,7 @@ impl DbusInterface {
 
     async fn get_server_information(&self) -> (String, String, String, String) {
         (
-            "cce-notification-daemon".to_string(),
+            "cce-notifier".to_string(),
             "CCEC Project".to_string(),
             "0.1.0".to_string(),
             "1.2".to_string(),