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-26 16:28:54 -05:00
|
|
|
App.addIcons(`${App.configDir}/icons`);
|
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-01-13 16:07:33 -05:00
|
|
|
export default {
|
|
|
|
onConfigParsed: () => {
|
|
|
|
globalThis.Pointers = Pointers;
|
|
|
|
},
|
|
|
|
|
|
|
|
windows: [
|
|
|
|
AppLauncher(),
|
|
|
|
NotifCenter(),
|
|
|
|
Powermenu(),
|
|
|
|
|
|
|
|
Bar(),
|
|
|
|
NotifPopups(),
|
|
|
|
],
|
|
|
|
};
|