feat: add notification module with functionality to display notifications on focused monitor with a NotificationServer as Singleton

This commit is contained in:
Hannes
2026-08-25 01:00:52 +02:00
parent b9a455347d
commit 0b20e8eb85
6 changed files with 215 additions and 0 deletions
@@ -0,0 +1,19 @@
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)
}
}