2024-05-30 19:45:14 +02:00
|
|
|
import { Bar } from "./bar.js";
|
|
|
|
import { NotificationPopups } from "./vendor/notificationPopups.js";
|
2024-05-26 01:02:14 +02:00
|
|
|
|
2024-05-30 19:45:14 +02:00
|
|
|
App.addIcons(`${App.configDir}/assets`);
|
2024-05-26 01:02:14 +02:00
|
|
|
App.config({
|
|
|
|
style: "./style.css",
|
|
|
|
windows: [
|
|
|
|
Bar(),
|
2024-05-30 19:45:14 +02:00
|
|
|
NotificationPopups(),
|
2024-05-26 01:02:14 +02:00
|
|
|
],
|
2024-05-30 19:45:14 +02:00
|
|
|
});
|
2024-05-26 01:02:14 +02:00
|
|
|
|