summaryrefslogtreecommitdiff
path: root/config/NotifsConfig.qml
blob: 34b92268d92a3ca567e6c763078381f7a9f08ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pragma Singleton

import Quickshell
import QtQuick

Singleton {
    readonly property bool expire: false
    readonly property int defaultExpireTimeout: 3000
    readonly property real clearThreshold: 0.3
    readonly property int expandThreshold: 20
    readonly property bool actionOnClick: false
    readonly property Sizes sizes: Sizes {}

    component Sizes: QtObject {
        readonly property int width: 400
        readonly property int image: 41
        readonly property int badge: 20
    }
}