mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-05 06:59:50 -05:00
Initial commit
This commit is contained in:
commit
05cd51b54e
148 changed files with 10112 additions and 0 deletions
23
notifications/Notifications.qml
Normal file
23
notifications/Notifications.qml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
pragma Singleton
|
||||
|
||||
import QtQuick
|
||||
import Quickshell
|
||||
import Quickshell.Services.Notifications
|
||||
|
||||
Singleton {
|
||||
property alias notificationServer: notifServer
|
||||
|
||||
NotificationServer {
|
||||
id: notifServer
|
||||
actionsSupported: true
|
||||
persistenceSupported: true
|
||||
}
|
||||
|
||||
Connections {
|
||||
target: notifServer
|
||||
|
||||
function onNotification(notification) {
|
||||
notification.tracked = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue