diff options
Diffstat (limited to 'examples/js/notifications/app.ts')
-rw-r--r-- | examples/js/notifications/app.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/js/notifications/app.ts b/examples/js/notifications/app.ts new file mode 100644 index 0000000..ed53292 --- /dev/null +++ b/examples/js/notifications/app.ts @@ -0,0 +1,9 @@ +import { App } from "astal/gtk3" +import style from "./style.scss" +import NotificationPopups from "./notifications/NotificationPopups" + +App.start({ + instanceName: "notifications", + css: style, + main: () => App.get_monitors().map(NotificationPopups), +}) |