Implement layout options

This commit is contained in:
Jas Singh
2024-07-24 09:46:38 -07:00
parent e90fd7cd29
commit 21393c122a
37 changed files with 1288 additions and 644 deletions

24
main.ts
View File

@@ -8,16 +8,16 @@ import Notifications from "./modules/notifications/index.js";
import { forMonitors } from "lib/utils"
App.config({
onConfigParsed: () => Utils.execAsync(`python3 ${App.configDir}/services/bluetooth.py`),
windows: [
...MenuWindows,
Notifications(),
SettingsDialog(),
...forMonitors(Bar),
],
closeWindowDelay: {
sideright: 350,
launcher: 350,
bar0: 350,
},
onConfigParsed: () => Utils.execAsync(`python3 ${App.configDir}/services/bluetooth.py`),
windows: [
...MenuWindows,
Notifications(),
SettingsDialog(),
...forMonitors(Bar),
],
closeWindowDelay: {
sideright: 350,
launcher: 350,
bar0: 350,
},
})