2024-03-24 17:23:38 -04:00
|
|
|
import Brightness from './services/brightness.ts';
|
2024-03-24 20:30:17 -04:00
|
|
|
import GSR from './services/gpu-screen-recorder.ts';
|
|
|
|
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';
|
2024-03-21 22:16:55 -04:00
|
|
|
import OSD from './ts/osd/main.ts';
|
2024-01-17 19:18:41 -05:00
|
|
|
import Powermenu from './ts/powermenu.ts';
|
2024-01-13 16:07:33 -05:00
|
|
|
|
|
|
|
|
2024-03-28 16:06:02 -04:00
|
|
|
// TODO: add workspace indicator
|
2024-03-05 16:03:28 -05:00
|
|
|
App.config({
|
|
|
|
icons: './icons',
|
|
|
|
|
2024-01-13 16:07:33 -05:00
|
|
|
onConfigParsed: () => {
|
2024-03-24 17:23:38 -04:00
|
|
|
Brightness.capsName = 'input30::capslock';
|
|
|
|
globalThis.Brightness = Brightness;
|
2024-03-24 20:30:17 -04:00
|
|
|
globalThis.Pointers = Pointers;
|
|
|
|
globalThis.GSR = GSR;
|
2024-01-13 16:07:33 -05:00
|
|
|
},
|
|
|
|
|
2024-03-05 16:03:28 -05:00
|
|
|
windows: () => [
|
2024-01-13 16:07:33 -05:00
|
|
|
AppLauncher(),
|
|
|
|
NotifCenter(),
|
|
|
|
Powermenu(),
|
|
|
|
|
|
|
|
Bar(),
|
|
|
|
NotifPopups(),
|
2024-03-21 22:16:55 -04:00
|
|
|
OSD(),
|
2024-01-13 16:07:33 -05:00
|
|
|
],
|
2024-03-05 16:03:28 -05:00
|
|
|
});
|