Initial commit

This commit is contained in:
Breadway 2026-05-17 13:13:37 +08:00
parent 3100ee0591
commit 633467b6f2
13 changed files with 158 additions and 41 deletions

View file

@ -55,7 +55,7 @@ impl NotifServer {
}
fn get_server_information(&self) -> (String, String, String, String) {
("aster".into(), "breadway".into(), "0.1.0".into(), "1.2".into())
("breadbar".into(), "breadway".into(), "0.1.0".into(), "1.2".into())
}
}

View file

@ -58,7 +58,7 @@ fn dismiss(cards_box: &gtk4::Box, window: &gtk4::Window, cards: &Cards, id: u32)
fn create_window() -> gtk4::Window {
let window = gtk4::Window::new();
window.add_css_class("aster-notification");
window.add_css_class("breadbar-notification");
window.init_layer_shell();
window.set_layer(Layer::Overlay);
window.set_anchor(Edge::Top, true);