feat: add screen height to font functions in Config. Added actions, inline Reply and urgency to NotificationBody

This commit is contained in:
Hannes
2026-08-29 22:48:53 +02:00
parent 095839c45a
commit bd59a8e457
5 changed files with 351 additions and 290 deletions
@@ -26,7 +26,7 @@ Item {
function play() {
if (running)
return
console.log(
Config.debug == "Notification" && console.log(
"[NotificationSound] Playing:", Config.configDir + "/modules/notification/assets/notification.ogg"
)
notificationSound.startDetached()
@@ -55,7 +55,7 @@ Item {
// return
// }
notification.tracked = true
console.log(
Config.debug == "Notification" && console.log(
"[NotificationServer] Notification received:",
notification.appName, notification.id, notification.summary, notification.body
)
@@ -93,6 +93,6 @@ Item {
Component.onCompleted: {
focusedMonitor = Hyprland.focusedMonitor
console.log("[NotificationServer]: Component completed")
Config.debug == "Notification" && console.log("[NotificationServer]: Component completed")
}
}