This commit is contained in:
Ly-sec 2025-09-02 17:03:36 +02:00
commit 7f5d70bcc8
19 changed files with 154 additions and 159 deletions

View file

@ -63,6 +63,7 @@ Singleton {
Logger.log("Settings", "Bar monitor list is empty, will show on all available screens")
}
}
Item {
Component.onCompleted: {
@ -100,8 +101,13 @@ Singleton {
// Emit the signal
root.settingsLoaded()
// Kickoff ColorScheme service
ColorSchemeService.init()
// Kickoff Matugen service
MatugenService.init()
Qt.callLater(function () {
// Some stuff like settings validation should just be executed once on startup and not on every reload
validateMonitorConfigurations()
})
}