nosignal-shell/config/NotifsConfig.qml
2 * r + 2 * t 6b64c8a918 feat: basic notifications
Also fix pixel issue with notif area background
Add more log rules to run script
2025-05-10 17:31:04 +10:00

15 lines
323 B
QML

pragma Singleton
import Quickshell
import QtQuick
Singleton {
readonly property int defaultExpireTimeout: 3000
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
readonly property int width: 400
readonly property int image: 50
readonly property int badge: 20
}
}