* Implemented strict linting standards and prettier formatting config. * More linter fixes and type updates. * More linter updates and type fixes * Remove noisy comments * Linter and type updates * Linter, formatting and type updates. * Linter updates * Type updates * Type updates * fixed all linter errors * Fixed all linting, formatting and type issues. * Resolve merge conflicts.
22 lines
691 B
TypeScript
22 lines
691 B
TypeScript
import 'lib/session';
|
|
import 'scss/style';
|
|
import 'globals/useTheme';
|
|
import 'globals/mousePos';
|
|
|
|
import { Bar } from 'modules/bar/Bar';
|
|
import MenuWindows from './modules/menus/main.js';
|
|
import SettingsDialog from 'widget/settings/SettingsDialog';
|
|
import Notifications from './modules/notifications/index.js';
|
|
import { forMonitors } from 'lib/utils';
|
|
import OSD from 'modules/osd/index';
|
|
|
|
App.config({
|
|
onConfigParsed: () => Utils.execAsync(`python3 ${App.configDir}/services/bluetooth.py`),
|
|
windows: [...MenuWindows, Notifications(), SettingsDialog(), ...forMonitors(Bar), OSD()],
|
|
closeWindowDelay: {
|
|
sideright: 350,
|
|
launcher: 350,
|
|
bar0: 350,
|
|
},
|
|
});
|