nixos-configs/modules/ags/config/binto.ts
matt1432 8bf5eccee0
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(ags): move to App.config
2024-03-05 16:03:28 -05:00

25 lines
571 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
App.config({
icons: './icons',
onConfigParsed: () => {
globalThis.Pointers = Pointers;
},
windows: () => [
AppLauncher(),
NotifCenter(),
Powermenu(),
Bar(),
NotifPopups(),
],
});