2023-05-25 18:31:22 +00:00
|
|
|
import {DBusService} from './dbusService.js';
|
|
|
|
import {NotificationDaemon} from './notificationDaemon.js';
|
2019-05-16 19:08:06 +00:00
|
|
|
|
2023-05-25 18:31:22 +00:00
|
|
|
/** @returns {void} */
|
|
|
|
export async function main() {
|
2019-05-16 19:08:06 +00:00
|
|
|
const service = new DBusService(
|
|
|
|
'org.gnome.Shell.Notifications',
|
|
|
|
new NotificationDaemon());
|
2023-05-25 18:31:22 +00:00
|
|
|
await service.runAsync();
|
2019-05-16 19:08:06 +00:00
|
|
|
}
|