aboutsummaryrefslogtreecommitdiffstats
path: root/notifications
diff options
context:
space:
mode:
Diffstat (limited to 'notifications')
-rw-r--r--notifications/Balloons.qml68
-rw-r--r--notifications/NotificationBalloon.qml116
l---------notifications/Notify.qml1
-rw-r--r--notifications/README.md27
l---------notifications/Status.qml1
l---------notifications/Theme.qml1
-rw-r--r--notifications/shell.qml30
7 files changed, 244 insertions, 0 deletions
diff --git a/notifications/Balloons.qml b/notifications/Balloons.qml
new file mode 100644
index 0000000..28ffafb
--- /dev/null
+++ b/notifications/Balloons.qml
@@ -0,0 +1,68 @@
+// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License version 2 as
+// published by the Free Software Foundation.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+import Quickshell
+import Quickshell.Wayland
+import QtQuick
+
+// The balloon stack, bottom-right of DP-1, over conky.
+Scope {
+ id: root
+
+ // A tick drives both expiry and the end of a snooze without waiting for a
+ // file change. 250ms keeps ronema's -t 1 near-instant.
+ property double now: Date.now()
+ Timer {
+ interval: 250
+ running: true
+ repeat: true
+ onTriggered: root.now = Date.now()
+ }
+
+ // Which live notifications draw here. Suppression is deliberately here
+ // and not in the daemon: the drawer lists a notification DND chose not to
+ // pop, because a list the user opened is not an interruption.
+ readonly property var visible: (Notify.queue || []).filter(p => {
+ if (Notify.drawerOpen) return false;
+ if (p.expires !== 0 && root.now >= p.expires) return false;
+ if (Notify.snoozeUntil > root.now) return false;
+ if (Status.dnd && p.urgency !== "critical") return false;
+ return true;
+ })
+
+ PanelWindow {
+ id: win
+
+ visible: root.visible.length > 0
+ screen: Quickshell.screens.find(s => s.name === "DP-1") ?? Quickshell.screens[0]
+ anchors { bottom: true; right: true }
+ margins { bottom: 12; right: 12 }
+ implicitWidth: 340
+ implicitHeight: column.implicitHeight
+ color: "transparent"
+ exclusionMode: ExclusionMode.Ignore
+ WlrLayershell.layer: WlrLayer.Overlay
+ WlrLayershell.namespace: "quickshell-notifications"
+ WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
+
+ Column {
+ id: column
+ width: parent.width
+ anchors { bottom: parent.bottom; right: parent.right }
+ spacing: 8
+
+ Repeater {
+ model: root.visible
+ NotificationBalloon { notification: modelData }
+ }
+ }
+ }
+}
diff --git a/notifications/NotificationBalloon.qml b/notifications/NotificationBalloon.qml
new file mode 100644
index 0000000..dc8072f
--- /dev/null
+++ b/notifications/NotificationBalloon.qml
@@ -0,0 +1,116 @@
+// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License version 2 as
+// published by the Free Software Foundation.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+import QtQuick
+
+// One balloon: icon at the left, app, summary and body, an X, and the click
+// targets. The body is markup, which is why the daemon advertises body-markup.
+Rectangle {
+ id: b
+
+ required property var notification
+
+ width: parent ? parent.width : 340
+ implicitHeight: texts.implicitHeight + 20
+ radius: 10
+ color: Qt.alpha(Theme.base, 0.82)
+ border.width: 1
+ border.color: Qt.alpha(Theme.text, 0.12)
+
+ // The background click target is declared first so the X, declared later,
+ // sits above it and wins its corner.
+ MouseArea {
+ anchors.fill: parent
+ acceptedButtons: Qt.LeftButton | Qt.RightButton
+ cursorShape: Qt.PointingHandCursor
+ onClicked: mouse => {
+ if (mouse.button === Qt.RightButton) {
+ Notify.closeAll();
+ return;
+ }
+ const acts = b.notification.actions || [];
+ const inert = b.notification.expires !== 0 && Date.now() >= b.notification.expires;
+ if (acts.length > 0 && !inert) Notify.actions(b.notification.id, acts);
+ else Notify.close(b.notification.id);
+ }
+ }
+
+ Image {
+ id: icon
+ visible: b.notification.icon !== "" && b.notification.icon !== undefined
+ anchors { left: parent.left; top: parent.top; margins: 10 }
+ width: 32
+ height: 32
+ source: visible ? "file://" + b.notification.icon : ""
+ sourceSize { width: 64; height: 64 }
+ }
+
+ Text {
+ id: close
+ anchors { right: parent.right; top: parent.top; margins: 6 }
+ width: 20
+ height: 20
+ text: "\uf00d"
+ horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
+ font { family: Theme.iconFamily; pixelSize: 11 }
+ color: closeArea.containsMouse ? Theme.red : Theme.subtext
+
+ MouseArea {
+ id: closeArea
+ anchors.fill: parent
+ hoverEnabled: true
+ cursorShape: Qt.PointingHandCursor
+ onClicked: Notify.close(b.notification.id)
+ }
+ }
+
+ Column {
+ id: texts
+ anchors {
+ left: icon.visible ? icon.right : parent.left
+ leftMargin: 10
+ right: parent.right
+ rightMargin: 10
+ top: parent.top
+ topMargin: 10
+ }
+ spacing: 2
+
+ Text {
+ width: parent.width
+ text: b.notification.app || ""
+ elide: Text.ElideRight
+ font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4; bold: true }
+ color: Theme.subtext
+ }
+
+ Text {
+ width: parent.width
+ text: b.notification.summary || ""
+ elide: Text.ElideRight
+ font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2 }
+ color: Theme.text
+ }
+
+ Text {
+ width: parent.width
+ visible: text !== ""
+ text: b.notification.body || ""
+ textFormat: Text.RichText
+ wrapMode: Text.WordWrap
+ maximumLineCount: 3
+ elide: Text.ElideRight
+ font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
+ color: Theme.subtext
+ }
+ }
+}
diff --git a/notifications/Notify.qml b/notifications/Notify.qml
new file mode 120000
index 0000000..635f31d
--- /dev/null
+++ b/notifications/Notify.qml
@@ -0,0 +1 @@
+../shared/Notify.qml \ No newline at end of file
diff --git a/notifications/README.md b/notifications/README.md
new file mode 100644
index 0000000..e71237a
--- /dev/null
+++ b/notifications/README.md
@@ -0,0 +1,27 @@
+# notifications
+
+The balloon renderer for the notification daemon (`notifyd`, a separate repo).
+It reads the daemon's published files through the `Notify` singleton and draws
+one balloon per live notification, bottom-right of `DP-1`.
+
+## Suppression lives here
+
+The daemon does not know about DND or snooze. This component withholds
+balloons: `status.dnd` suppresses low and normal, `notifyd/snooze` suppresses
+everything. The drawer's reserved space lists every live notification anyway.
+
+## The files are the interface
+
+ $XDG_RUNTIME_DIR/notifyd/queue.json the live queue
+ $XDG_RUNTIME_DIR/notifyd/history.json the ring of 20
+ $XDG_RUNTIME_DIR/notifyd/drawer "1" while the drawer holds the space
+ $XDG_RUNTIME_DIR/notifyd/snooze an epoch second while snoozing
+
+`notifyctl` and `notify-snooze.sh` are in `~/bin`; without them the balloons
+draw but close and actions do nothing.
+
+## Blur
+
+Hyprland blurs a layer surface only when a rule names its namespace. This
+component sets `quickshell-notifications`; the rule is in
+`~/.config/hypr/sections/decorations.lua`.
diff --git a/notifications/Status.qml b/notifications/Status.qml
new file mode 120000
index 0000000..e7188a3
--- /dev/null
+++ b/notifications/Status.qml
@@ -0,0 +1 @@
+../shared/Status.qml \ No newline at end of file
diff --git a/notifications/Theme.qml b/notifications/Theme.qml
new file mode 120000
index 0000000..3d2e40f
--- /dev/null
+++ b/notifications/Theme.qml
@@ -0,0 +1 @@
+../shared/Theme.qml \ No newline at end of file
diff --git a/notifications/shell.qml b/notifications/shell.qml
new file mode 100644
index 0000000..1b353a3
--- /dev/null
+++ b/notifications/shell.qml
@@ -0,0 +1,30 @@
+// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License version 2 as
+// published by the Free Software Foundation.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+
+import Quickshell
+import Quickshell.Wayland
+
+ShellRoot {
+ // Quickshell exits once no window is visible, and the balloons are
+ // hidden whenever the queue is empty, so this keeps the shell alive. See
+ // AGENTS.md.
+ PanelWindow {
+ visible: true
+ implicitWidth: 1
+ implicitHeight: 1
+ color: "transparent"
+ exclusionMode: ExclusionMode.Ignore
+ mask: Region {}
+ WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
+ }
+
+ Balloons {}
+}