nixos-configs/modules/ags/config/binto.ts
matt1432 47d1642e2e
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags): move closeWindowDelay to popup.ts
2024-02-05 10:37:56 -05:00

23 lines
545 B
TypeScript

import Pointers from './services/pointers.ts';
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';
// TODO: add OSD, workspace indicator and current window indicator
export default {
onConfigParsed: () => {
globalThis.Pointers = Pointers;
},
windows: [
AppLauncher(),
NotifCenter(),
Powermenu(),
Bar(),
NotifPopups(),
],
};