nixos-configs/modules/ags/config/binto.ts

25 lines
585 B
TypeScript
Raw Normal View History

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';
App.addIcons(`${App.configDir}/icons`);
// TODO: add OSD, workspace indicator and current window indicator
export default {
onConfigParsed: () => {
globalThis.Pointers = Pointers;
},
windows: [
AppLauncher(),
NotifCenter(),
Powermenu(),
Bar(),
NotifPopups(),
],
};