Files
quickshell/modules/notification/NotificationLoader.qml
T

19 lines
435 B
QML

import QtQuick
import Quickshell
import "./notificationServer"
Item {
id: notification_root
Repeater { // Bars
model: Quickshell.screens
delegate: Loader {
active: true // loads object
sourceComponent: Notification {screen: modelData} // creates instance of bar component
}
}
Component.onCompleted: {
console.log("[NotificationLoader]:", NotificationS)
}
}