feat: add NotificationOverview and NotificationOverviewLoader for notification history overview {alpha}

This commit is contained in:
Hannes
2026-08-31 17:52:13 +02:00
parent f2b69382c7
commit 14da95aa3f
5 changed files with 891 additions and 6 deletions
@@ -13,9 +13,15 @@ Item {
property var focusedMonitor: null
property var newestNotification: null
property bool soundEnabled: true
property bool overviewVisible: false
property alias trackedNotifications: notificationServer.trackedNotifications
signal notificationReceived(var notification)
function toggleOverview() {
overviewVisible = !overviewVisible
}
function correctMonitor(screen) {
return (Hyprland.monitorFor(screen) === focusedMonitor)
}