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

33 lines
846 B
TypeScript
Raw Normal View History

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