blob: 7944cd122a0955741ad21ae276edac9273445b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* exported main */
const { DBusService } = imports.dbusService;
const { NotificationDaemon } = imports.notificationDaemon;
function main() {
const service = new DBusService(
'org.gnome.Shell.Notifications',
new NotificationDaemon());
service.run();
}
|