2024-01-11 12:07:18 -05:00
|
|
|
import { watchAndCompileSass } from './js/utils.js';
|
|
|
|
import windows from './js/main.js';
|
2023-10-24 17:26:38 -04:00
|
|
|
|
2024-01-11 12:07:18 -05:00
|
|
|
watchAndCompileSass();
|
2023-11-27 15:01:54 -05:00
|
|
|
|
2023-12-30 19:49:08 -05:00
|
|
|
const closeWinDelay = 800;
|
2023-10-02 12:06:35 -04:00
|
|
|
|
2023-09-08 14:21:31 -04:00
|
|
|
|
2023-08-27 10:31:41 -04:00
|
|
|
export default {
|
2023-10-20 23:11:21 -04:00
|
|
|
notificationPopupTimeout: 5000,
|
|
|
|
cacheNotificationActions: true,
|
|
|
|
closeWindowDelay: {
|
2023-12-30 17:14:55 -05:00
|
|
|
'applauncher': closeWinDelay,
|
|
|
|
'calendar': closeWinDelay,
|
|
|
|
'notification-center': closeWinDelay,
|
2024-01-02 16:40:12 -05:00
|
|
|
'osd': 300,
|
2023-12-30 17:14:55 -05:00
|
|
|
'osk': closeWinDelay,
|
|
|
|
'overview': closeWinDelay,
|
|
|
|
'powermenu': closeWinDelay,
|
|
|
|
'quick-settings': closeWinDelay,
|
2023-10-20 23:11:21 -04:00
|
|
|
},
|
|
|
|
windows: [
|
2024-01-11 12:07:18 -05:00
|
|
|
...windows,
|
2023-10-20 23:11:21 -04:00
|
|
|
],
|
2023-09-11 14:18:22 -04:00
|
|
|
};
|