Initial code for supporting notifications

DBus daemon code; needs testing, and connection to UI.
This commit is contained in:
Ian Douglas Scott 2021-09-01 15:33:59 -07:00 committed by Ian Douglas Scott
parent 4c070c4d41
commit cf94792f12
3 changed files with 169 additions and 0 deletions

View file

@ -3,6 +3,7 @@ use gtk4::{gdk, glib, prelude::*};
mod deref_cell;
mod mpris;
mod mpris_player;
mod notifications;
mod status_area;
mod status_menu;
mod status_notifier_watcher;
@ -39,6 +40,7 @@ fn main() {
});
status_notifier_watcher::start();
let _notificiations = notifications::Notifications::new();
glib::MainLoop::new(None, false).run();
}