summaryrefslogtreecommitdiff
path: root/config/NotifsConfig.qml
blob: 10d0a4f1a433fd2179a124553a11ff1c12bc2485 (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: 50
        readonly property int badge: 20
    }
}