2024-01-13 23:38:31 -05:00
|
|
|
import Pointers from '../wim/services/pointers.ts';
|
2024-01-13 16:07:33 -05:00
|
|
|
|
2024-01-13 23:38:31 -05:00
|
|
|
import AppLauncher from '../wim/ts/applauncher/main.ts';
|
|
|
|
import Bar from './bar/main.ts';
|
|
|
|
import { NotifPopups, NotifCenter } from './notifications/main.ts';
|
|
|
|
import Powermenu from '../wim/ts/powermenu.ts';
|
2024-01-13 16:07:33 -05:00
|
|
|
|
|
|
|
const closeWinDelay = 800;
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: add OSD, workspace indicator / overview and current window indicator
|
|
|
|
export default {
|
|
|
|
notificationPopupTimeout: 5000,
|
|
|
|
cacheNotificationActions: true,
|
|
|
|
|
|
|
|
onConfigParsed: () => {
|
|
|
|
globalThis.Pointers = Pointers;
|
|
|
|
},
|
|
|
|
|
|
|
|
closeWindowDelay: {
|
|
|
|
'applauncher': closeWinDelay,
|
|
|
|
'notification-center': closeWinDelay,
|
|
|
|
'powermenu': closeWinDelay,
|
|
|
|
},
|
|
|
|
windows: [
|
|
|
|
AppLauncher(),
|
|
|
|
NotifCenter(),
|
|
|
|
Powermenu(),
|
|
|
|
|
|
|
|
Bar(),
|
|
|
|
NotifPopups(),
|
|
|
|
],
|
|
|
|
};
|