Initial code for implementing StatusNotifierWatcher service

This commit is contained in:
Ian Douglas Scott 2021-09-01 13:04:02 -07:00
parent 4b942c1b92
commit f5ed9495c6
2 changed files with 107 additions and 0 deletions

View file

@ -5,6 +5,7 @@ mod mpris;
mod mpris_player;
mod status_area;
mod status_menu;
mod status_notifier_watcher;
mod time_button;
mod window;
mod x;
@ -37,5 +38,7 @@ fn main() {
}
});
status_notifier_watcher::start();
glib::MainLoop::new(None, false).run();
}