better structure

This commit is contained in:
2025-10-19 00:14:19 +02:00
parent 057afc086e
commit 8733656ed9
630 changed files with 81 additions and 137 deletions

View File

@@ -0,0 +1,57 @@
import QtQuick
import Quickshell
import Quickshell.Widgets
import qs.Constants
import qs.Modules.Bar
import qs.Modules.Misc
import qs.Modules.Panel
import qs.Services
ShellRoot {
id: root
Loader {
id: loader
active: CacheService.loaded && NukeKded6.done
sourceComponent: Item {
Notification {
id: notification
}
IPCService {
id: ipcService
}
Bar {
id: bar
}
Corners {
id: corners
}
CalendarPanel {
id: calendarPanel
objectName: "calendarPanel"
}
ControlCenterPanel {
id: controlCenterPanel
objectName: "controlCenterPanel"
}
NotificationHistoryPanel {
id: notificationHistoryPanel
objectName: "notificationHistoryPanel"
}
}
}
}