2024-01-17 19:18:41 -05:00
|
|
|
import Pointers from './services/pointers.ts';
|
2024-01-13 16:07:33 -05:00
|
|
|
|
2024-01-17 19:18:41 -05:00
|
|
|
import AppLauncher from './ts/applauncher/main.ts';
|
|
|
|
import Bar from './ts/bar/binto.ts';
|
|
|
|
import { NotifPopups, NotifCenter } from './ts/notifications/binto.ts';
|
|
|
|
import Powermenu from './ts/powermenu.ts';
|
2024-01-13 16:07:33 -05:00
|
|
|
|
|
|
|
|
2024-02-05 06:25:43 -05:00
|
|
|
// TODO: add OSD, workspace indicator and current window indicator
|
2024-03-05 16:03:28 -05:00
|
|
|
App.config({
|
|
|
|
icons: './icons',
|
|
|
|
|
2024-01-13 16:07:33 -05:00
|
|
|
onConfigParsed: () => {
|
|
|
|
globalThis.Pointers = Pointers;
|
|
|
|
},
|
|
|
|
|
2024-03-05 16:03:28 -05:00
|
|
|
windows: () => [
|
2024-01-13 16:07:33 -05:00
|
|
|
AppLauncher(),
|
|
|
|
NotifCenter(),
|
|
|
|
Powermenu(),
|
|
|
|
|
|
|
|
Bar(),
|
|
|
|
NotifPopups(),
|
|
|
|
],
|
2024-03-05 16:03:28 -05:00
|
|
|
});
|